59 lines
No EOL
1.3 KiB
JSON
59 lines
No EOL
1.3 KiB
JSON
{
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"typescript",
|
|
"vue"
|
|
],
|
|
"eslint.useFlatConfig": true,
|
|
"eslint.options": {
|
|
"extensions": [
|
|
".js",
|
|
".ts",
|
|
".mts",
|
|
".vue"
|
|
],
|
|
"overrideConfigFile": ".config/eslint.mjs"
|
|
},
|
|
"eslint.workingDirectories": [
|
|
"."
|
|
],
|
|
"eslint.probe": [
|
|
"javascript",
|
|
"typescript",
|
|
"html",
|
|
"vue"
|
|
],
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/.vite": true,
|
|
"**/dist": true,
|
|
"**/build": true
|
|
},
|
|
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "vscode.typescript-language-features",
|
|
"javascript.preferences.quoteStyle": "single"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "vscode.typescript-language-features",
|
|
"typescript.preferences.quoteStyle": "single"
|
|
},
|
|
"[vue]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[sass]": {
|
|
"editor.defaultFormatter": "syler.sass-indented",
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 2
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features",
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 2
|
|
},
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features",
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 2
|
|
},
|
|
} |