mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 09:36:27 +00:00
applying some recomendations from https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project
24 lines
557 B
JSON
24 lines
557 B
JSON
{
|
|
"[css]": {
|
|
"editor.suggest.insertMode": "replace",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[json]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[jsonc]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact"
|
|
]
|
|
}
|