forked from verdnatura/salix-front
27 lines
832 B
JSON
27 lines
832 B
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"],
|
|
"json.schemas": [
|
|
{
|
|
"fileMatch": ["cypress.json"],
|
|
"url": "https://on.cypress.io/cypress.schema.json"
|
|
}
|
|
],
|
|
"[vue]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"cSpell.words": ["axios"],
|
|
|
|
"editor.tabSize": 2,
|
|
"files.autoSave": "onFocusChange",
|
|
"files.trimTrailingWhitespace": true,
|
|
"editor.hover.enabled": true,
|
|
"editor.formatOnPaste": true,
|
|
"editor.wordWrapColumn": 80,
|
|
"prettier.singleQuote": true
|
|
}
|