31 lines
733 B
JSON
31 lines
733 B
JSON
{
|
|
"[html]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
}
|
|
},
|
|
"[typescript]": {
|
|
// "editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "always"
|
|
}
|
|
},
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"html"
|
|
],
|
|
"prettier.printWidth": 150,
|
|
"prettier.singleAttributePerLine": true,
|
|
"prettier.htmlWhitespaceSensitivity": "css",
|
|
"prettier.tabWidth": 2
|
|
}
|