Browse Source
Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: #791 Co-authored-by: dpschen <dpschen@noreply.kolaente.de> Co-committed-by: dpschen <dpschen@noreply.kolaente.de>pull/793/head
5 changed files with 84 additions and 1 deletions
@ -0,0 +1,12 @@
|
||||
{ |
||||
"recommendations": [ |
||||
"codezombiech.gitignore", |
||||
"dbaeumer.vscode-eslint", |
||||
"editorconfig.editorconfig", |
||||
"johnsoncodehk.volar", |
||||
"lokalise.i18n-ally", |
||||
"mgmcdermott.vscode-language-babel", |
||||
"mikestead.dotenv", |
||||
"Syler.sass-indented" |
||||
] |
||||
} |
@ -0,0 +1,30 @@
|
||||
{ |
||||
"eslint.packageManager": "yarn", |
||||
"editor.formatOnSave": false, |
||||
"editor.codeActionsOnSave": { |
||||
"source.fixAll": true |
||||
}, |
||||
"eslint.format.enable": true, |
||||
"[javascript]": { |
||||
"editor.defaultFormatter": "dbaeumer.vscode-eslint" |
||||
}, |
||||
"[typescript]": { |
||||
"editor.defaultFormatter": "dbaeumer.vscode-eslint" |
||||
}, |
||||
|
||||
// https://eslint.vuejs.org/user-guide/#editor-integrations |
||||
"eslint.validate": [ |
||||
"javascript", |
||||
"javascriptreact", |
||||
"vue" |
||||
], |
||||
"vetur.validation.template": false, |
||||
|
||||
// i18n ally |
||||
"i18n-ally.localesPaths": [ |
||||
"src/i18n/lang" |
||||
], |
||||
"i18n-ally.sortKeys": true, |
||||
"i18n-ally.keepFulfilled": true, |
||||
"i18n-ally.keystyle": "nested", |
||||
} |
Loading…
Reference in new issue