mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-09 16:50:23 -06:00
Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Stokes Player <stokes.player@gmail.com> Co-authored-by: astone123 <adams@cypress.io> Co-authored-by: Stokes Player <stokes@cypress.io>
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"eslint.alwaysShowStatus": true,
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"json"
|
|
],
|
|
"eslint.enable": true,
|
|
// this project does not use Prettier
|
|
// thus set all settings to disable accidentally running Prettier
|
|
"prettier.requireConfig": true,
|
|
"prettier.disableLanguages": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"json"
|
|
],
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
|
|
// Support autocompletion and preview of strings.
|
|
// Additionally, support extraction of hardcoded strings into key-values.
|
|
"i18n-ally.localesPaths": "packages/frontend-shared/src/locales",
|
|
"i18n-ally.displayLanguage": "en-US",
|
|
"i18n-ally.enabledFrameworks": ["vue"],
|
|
"i18n-ally.extract.keyPrefix": "{fileNameWithoutExt}.",
|
|
"i18n-ally.extract.keyMaxLength": 40,
|
|
"i18n-ally.keystyle": "nested",
|
|
|
|
// Volar is the main extension that powers Vue's language features.
|
|
// These are commented out because they slow down node development
|
|
// "volar.autoCompleteRefs": false,
|
|
"volar.takeOverMode.enabled": "auto",
|
|
|
|
"editor.tabSize": 2,
|
|
}
|