21 lines
535 B
JSON
21 lines
535 B
JSON
{
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": "explicit",
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.fixAll.stylelint": "explicit",
|
|
"source.fixAll.oxc": "explicit",
|
|
"source.organizeImports": "never"
|
|
},
|
|
"editor.formatOnSave": true,
|
|
|
|
"stylelint.enable": true,
|
|
"stylelint.validate": ["css", "less", "postcss", "scss", "vue"],
|
|
|
|
"eslint.enable": true,
|
|
"oxc.enable": true,
|
|
"[vue]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
}
|