Closed imaichiyyy closed 1 year ago
Add settings.json into .vscode/ To make the settings the same in each environment, I'd think we could add a configuration file for Prettier.
settings.json
.vscode/
{ "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "editor.tabSize": 2, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "eslint.validate": [ "javascript", "javascriptreact", "typescript", "typescriptreact" ] }
I see! We have .prettierrc.json but this is useful in addition to that.
.prettierrc.json
Add
settings.json
into.vscode/
To make the settings the same in each environment, I'd think we could add a configuration file for Prettier.