74 lines
1.7 KiB
JSON
74 lines
1.7 KiB
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "always"
|
|
},
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.nuxt": true,
|
|
"**/.output": true,
|
|
"**/.data": true,
|
|
"**/.cache": true,
|
|
"**/.pnpm-store": true,
|
|
"**/coverage": true,
|
|
"**/dist": true,
|
|
"**/node_modules": true
|
|
},
|
|
"search.exclude": {
|
|
"**/.git": true,
|
|
"**/.nuxt": true,
|
|
"**/.output": true,
|
|
"**/.data": true,
|
|
"**/.cache": true,
|
|
"**/.pnpm-store": true,
|
|
"**/coverage": true,
|
|
"**/dist": true,
|
|
"**/node_modules": true
|
|
},
|
|
"files.watcherExclude": {
|
|
"**/.git/**": true,
|
|
"**/.nuxt/**": true,
|
|
"**/.output/**": true,
|
|
"**/.data/**": true,
|
|
"**/.cache/**": true,
|
|
"**/.pnpm-store/**": true,
|
|
"**/coverage/**": true,
|
|
"**/dist/**": true,
|
|
"**/node_modules/**": false
|
|
},
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"vue"
|
|
],
|
|
"js/ts.tsdk.path": "node_modules/typescript/lib",
|
|
"json.schemaDownload.trustedDomains": {
|
|
"https://raw.githubusercontent.com/DavidAnson/markdownlint/": true
|
|
},
|
|
"i18n-ally.enabledFrameworks": [
|
|
"vue"
|
|
],
|
|
"i18n-ally.localesPaths": [
|
|
"i18n/locales"
|
|
],
|
|
"i18n-ally.pathMatcher": "{locale}.json",
|
|
"i18n-ally.keystyle": "nested",
|
|
"i18n-ally.namespace": false,
|
|
"i18n-ally.sourceLanguage": "sk",
|
|
"i18n-ally.displayLanguage": "sk",
|
|
"todo-tree.filtering.excludeGlobs": [
|
|
"**/.git/**",
|
|
"**/.nuxt/**",
|
|
"**/.output/**",
|
|
"**/.data/**",
|
|
"**/.cache/**",
|
|
"**/.pnpm-store/**",
|
|
"**/coverage/**",
|
|
"**/dist/**",
|
|
"**/node_modules/**"
|
|
],
|
|
"files.eol": "\n"
|
|
}
|