salix-front/.vscode/settings.json

19 lines
590 B
JSON
Raw Normal View History

2022-03-24 12:33:14 +00:00
{
2022-03-24 13:57:11 +00:00
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.formatOnSave": true,
2022-11-29 13:45:48 +00:00
"editor.defaultFormatter": "esbenp.prettier-vscode",
2022-03-24 13:57:11 +00:00
"editor.codeActionsOnSave": ["source.fixAll.eslint"],
"eslint.validate": ["javascript", "javascriptreact", "typescript", "vue"],
"json.schemas": [
{
"fileMatch": ["cypress.json"],
"url": "https://on.cypress.io/cypress.schema.json"
}
],
2022-04-19 11:07:23 +00:00
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"cSpell.words": ["axios"]
2022-03-24 13:57:11 +00:00
}