42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"editor.bracketPairColorization.enabled": true,
|
|
"editor.guides.bracketPairs": true,
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": [
|
|
"source.fixAll.eslint"
|
|
],
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"vue"
|
|
],
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "vscode.typescript-language-features"
|
|
},
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "vscode.typescript-language-features"
|
|
},
|
|
"[vue]": {
|
|
"editor.defaultFormatter": "johnsoncodehk.volar"
|
|
},
|
|
"[html]": {
|
|
"editor.defaultFormatter": "vscode.html-language-features"
|
|
},
|
|
"json.schemas": [
|
|
{
|
|
"fileMatch": [
|
|
"cypress.json"
|
|
],
|
|
"url": "https://on.cypress.io/cypress.schema.json"
|
|
}
|
|
]
|
|
} |