19 lines
474 B
JSON
19 lines
474 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": "always",
|
|
"source.fixAll.eslint": "always"
|
|
},
|
|
"eslint.validate": ["javascript", "typescript", "vue"],
|
|
"files.associations": {
|
|
"*.vue": "vue"
|
|
},
|
|
"tailwindCSS.includeLanguages": {
|
|
"vue": "html"
|
|
},
|
|
"prettier.singleQuote": true,
|
|
"prettier.semi": true,
|
|
"prettier.trailingComma": "es5",
|
|
"autoimport.showNotifications": true
|
|
}
|
|
|