Problem:
Prettier was not running when I saved Emacs buffers.
Why?
- prettier-js-mode needs needs node; lorri exposes node to direnv; direnv
exposes node to Emacs; lorri was not working as expected.
Solution:
Now that I'm using nix-buffer, I can properly expose node (and other
dependencies) to my Emacs buffers. Now Prettier is working.
Commentary:
Since prettier hadn't worked for so long, I stopped thinking about it. As such,
I did not include it as a dependency in boilerplate/typescript. I added it
now. I retroactively ran prettier across a few of my frontend projects to unify
the code styling.
I may need to run...
```shell
$ cd ~/briefcase
$ nix-shell
$ npx prettier --list-different "**/*.{js,ts,jsx,tsx,html,css,json}"
```
...to see which files I should have formatted.
16 lines
371 B
JSON
16 lines
371 B
JSON
{
|
|
"name": "deepmind-part-two",
|
|
"version": "1.0.0",
|
|
"description": "Practicing coding interview questions",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"author": "William Carroll",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"prettier": "^2.0.2",
|
|
"ts-node": "^8.6.2",
|
|
"typescript": "^3.7.5"
|
|
}
|
|
}
|