You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
632 B
26 lines
632 B
3 years ago
|
{
|
||
|
"editor.tabSize": 2,
|
||
|
"editor.detectIndentation": false,
|
||
|
"jest.autoRun": {
|
||
|
"watch": false,
|
||
|
"onSave": "test-file"
|
||
|
},
|
||
|
"search.exclude": {
|
||
|
"package-lock.json": true
|
||
|
},
|
||
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
||
|
"editor.formatOnSave": false,
|
||
|
"editor.codeActionsOnSave": [
|
||
|
"source.addMissingImports",
|
||
|
"source.fixAll.eslint"
|
||
|
],
|
||
|
// Multiple language settings for json and jsonc files
|
||
|
"[json][jsonc]": {
|
||
|
"editor.formatOnSave": true,
|
||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||
|
},
|
||
|
"[typescriptreact]": {
|
||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||
|
}
|
||
|
}
|