7 changed files with 61 additions and 6 deletions
@ -0,0 +1,42 @@
|
||||
{ |
||||
"editor.formatOnPaste": true, |
||||
"editor.formatOnSave": true, |
||||
"editor.codeActionsOnSave": { |
||||
// "source.fixAll": true, |
||||
}, |
||||
"eslint.validate": [ |
||||
"javascript", |
||||
"typescript" |
||||
], |
||||
"files.associations": { |
||||
"*.json": "jsonc" |
||||
}, |
||||
"emmet.extensionsPath": [ |
||||
".vscode/" |
||||
], |
||||
"emmet.triggerExpansionOnTab": true, |
||||
"emmet.showExpandedAbbreviation": "always", |
||||
"emmet.includeLanguages": { |
||||
"typescript": "typescriptreact", |
||||
"vue": "html", |
||||
}, |
||||
"prettier.requireConfig": true, |
||||
"prettier.configPath": ".prettierrc.js", |
||||
"css.validate": false, |
||||
"less.validate": false, |
||||
"scss.validate": false, |
||||
"cSpell.words": [ |
||||
"mdicon", |
||||
"mdijs" |
||||
], |
||||
"[javascript]": { |
||||
"editor.defaultFormatter": "esbenp.prettier-vscode" |
||||
}, |
||||
"[typescript]": { |
||||
"editor.defaultFormatter": "esbenp.prettier-vscode" |
||||
}, |
||||
"[typescriptreact]": { |
||||
"editor.defaultFormatter": "esbenp.prettier-vscode" |
||||
}, |
||||
"git.ignoreLimitWarning": true, |
||||
} |
@ -0,0 +1,9 @@
|
||||
{ |
||||
"html": { |
||||
"snippets": { |
||||
"divc": "div[class=${1}]", |
||||
"slot": "slot[name=${1}]", |
||||
"ic": "i[class=${1}]" |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue