|
|
@@ -1,32 +1,43 @@
|
|
|
{
|
|
|
- "editor.formatOnType": true,
|
|
|
- "editor.formatOnSave": true,
|
|
|
- "[vue]": {
|
|
|
- "editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
- },
|
|
|
+ "editor.detectIndentation": false,
|
|
|
"editor.tabSize": 2,
|
|
|
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
|
+ "editor.formatOnSave": true,
|
|
|
"editor.formatOnPaste": true,
|
|
|
+ "editor.formatOnType": true,
|
|
|
"editor.guides.bracketPairs": "active",
|
|
|
- "files.autoSave": "afterDelay",
|
|
|
- "git.confirmSync": false,
|
|
|
- "workbench.startupEditor": "newUntitledFile",
|
|
|
+ "editor.snippetSuggestions": "top",
|
|
|
"editor.suggestSelection": "first",
|
|
|
"editor.acceptSuggestionOnCommitCharacter": false,
|
|
|
- "css.lint.propertyIgnoredDueToDisplay": "ignore",
|
|
|
"editor.quickSuggestions": {
|
|
|
"other": true,
|
|
|
"comments": true,
|
|
|
"strings": true
|
|
|
},
|
|
|
- "files.associations": {
|
|
|
- "editor.snippetSuggestions": "top"
|
|
|
+ "editor.codeActionsOnSave": {
|
|
|
+ "source.fixAll.eslint": "explicit",
|
|
|
+ "source.fixAll.stylelint": "explicit"
|
|
|
+ },
|
|
|
+ "eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact", "vue"],
|
|
|
+ "stylelint.validate": ["css", "scss", "vue"],
|
|
|
+ "[vue]": {
|
|
|
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
},
|
|
|
"[css]": {
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
},
|
|
|
- "editor.codeActionsOnSave": {
|
|
|
- "source.fixAll.eslint": true
|
|
|
+ "[scss]": {
|
|
|
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
+ },
|
|
|
+ "[typescript]": {
|
|
|
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
},
|
|
|
- "iconify.excludes": ["el"],
|
|
|
- "cSpell.words": ["iconify", "Qrcode"]
|
|
|
+ "[javascript]": {
|
|
|
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
+ },
|
|
|
+ "css.lint.propertyIgnoredDueToDisplay": "ignore",
|
|
|
+ "files.autoSave": "afterDelay",
|
|
|
+ "git.confirmSync": false,
|
|
|
+ "workbench.startupEditor": "newUntitledFile",
|
|
|
+ "iconify.excludes": ["el"]
|
|
|
}
|