21 lines
488 B
JSON
21 lines
488 B
JSON
{
|
|
"eslint.validate": ["html", "vue", "javascript", "jsx"],
|
|
"emmet.syntaxProfiles": {
|
|
"vue-html": "html",
|
|
"vue": "html"
|
|
},
|
|
"editor.tabSize": 2,
|
|
"eslint.alwaysShowStatus": true,
|
|
"eslint.quiet": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.fixAll": "explicit",
|
|
"source.fixAll.stylelint": "explicit"
|
|
},
|
|
"stylelint.customSyntax": "postcss-less",
|
|
"stylelint.validate": [
|
|
"css",
|
|
"less"
|
|
]
|
|
}
|