{ "eslint.validate": [ "javascript", "typescript", "vue" ], "eslint.useFlatConfig": true, "eslint.workingDirectories": [ "." ], "eslint.probe": [ "javascript", "typescript", "html", "vue" ], "search.exclude": { "**/node_modules": true, "**/.vite": true, "**/dist": true, "**/build": true }, "[javascript]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint", "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" }, "javascript.preferences.quoteStyle": "single" }, "[typescript]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint", "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" }, "typescript.preferences.quoteStyle": "single", "typescript.preferences.organizeImports": "off" }, "[vue]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" } }, "files.associations": { "*.css": "tailwindcss" }, "[json]": { "editor.defaultFormatter": "vscode.json-language-features", "editor.insertSpaces": true, "editor.tabSize": 2 }, "[jsonc]": { "editor.defaultFormatter": "vscode.json-language-features", "editor.insertSpaces": true, "editor.tabSize": 2 }, "eslint.format.enable": true, "editor.formatOnSave": true, "typescript.preferences.includePackageJsonAutoImports": "auto", "typescript.suggest.autoImports": true, "typescript.updateImportsOnFileMove.enabled": "always", "typescript.workspaceSymbols.scope": "allOpenProjects", }