Adds in initial migration, recommends ESLint VS Code extension and sets up defaults to format with ESLint on save and use ESLint as the general formatter
This commit is contained in:
parent
86967b26cd
commit
a857c3da07
9 changed files with 217 additions and 219 deletions
15
.vscode/settings.json
vendored
15
.vscode/settings.json
vendored
|
@ -1,4 +1,17 @@
|
|||
{
|
||||
"editor.bracketPairColorization.enabled": true,
|
||||
"editor.guides.bracketPairs": true
|
||||
"editor.guides.bracketPairs": true,
|
||||
"eslint.validate": [
|
||||
"javascript"
|
||||
],
|
||||
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
||||
"eslint.format.enable": true,
|
||||
"eslint.codeActionsOnSave.rules": null,
|
||||
"[jsonc]": {
|
||||
"editor.defaultFormatter": "vscode.json-language-features"
|
||||
},
|
||||
"[vue]": {
|
||||
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
||||
},
|
||||
"editor.formatOnSave": true
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue