Initial commit
This commit is contained in:
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"Vue.volar",
|
||||
"Vue.vscode-typescript-vue-plugin",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"esbenp.prettier-vscode",
|
||||
"EditorConfig.EditorConfig",
|
||||
"Nuxt.mdc",
|
||||
"lokalise.i18n-ally",
|
||||
"vitest.explorer"
|
||||
]
|
||||
}
|
||||
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Nuxt: dev",
|
||||
"type": "node-terminal",
|
||||
"request": "launch",
|
||||
"command": "pnpm dev"
|
||||
}
|
||||
]
|
||||
}
|
||||
Vendored
+72
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"editor.formatOnSave": true,
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll.eslint": "explicit"
|
||||
},
|
||||
"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/**": true
|
||||
},
|
||||
"eslint.validate": [
|
||||
"javascript",
|
||||
"typescript",
|
||||
"vue"
|
||||
],
|
||||
"js/ts.tsdk.path": "node_modules/typescript/lib",
|
||||
"vue.server.hybridMode": false,
|
||||
"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"
|
||||
}
|
||||
Reference in New Issue
Block a user