23 lines
381 B
JSON
23 lines
381 B
JSON
{
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"typescript",
|
|
"html"
|
|
],
|
|
"eslint.options": {
|
|
"extensions": [
|
|
".js",
|
|
".ts",
|
|
"html"
|
|
]
|
|
},
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"[html]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "vscode.html-language-features"
|
|
},
|
|
"eslint.enable": false
|
|
}
|