|
| 1 | +{ |
| 2 | + "editor.tabSize": 2, |
| 3 | + "editor.detectIndentation": false, |
| 4 | + "editor.formatOnSave": false, |
| 5 | + "editor.defaultFormatter": "esbenp.prettier-vscode", |
| 6 | + "editor.codeActionsOnSave": { |
| 7 | + "source.addMissingImports": "explicit", |
| 8 | + "source.fixAll": "explicit", |
| 9 | + "source.organizeImports": "never" |
| 10 | + }, |
| 11 | + |
| 12 | + "[javascript][javascriptreact][typescript][typescriptreact]": { |
| 13 | + "editor.defaultFormatter": "dbaeumer.vscode-eslint" |
| 14 | + }, |
| 15 | + "[json][jsonc]": { |
| 16 | + "editor.formatOnSave": true, |
| 17 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 18 | + }, |
| 19 | + |
| 20 | + "css.validate": false, |
| 21 | + "scss.validate": false, |
| 22 | + |
| 23 | + "search.exclude": { |
| 24 | + "package-lock.json": true, |
| 25 | + "**/node_modules": true, |
| 26 | + "**/.next": true, |
| 27 | + "**/dist": true, |
| 28 | + "**/coverage": true |
| 29 | + }, |
| 30 | + |
| 31 | + "eslint.useFlatConfig": true, |
| 32 | + "eslint.workingDirectories": [ |
| 33 | + { "pattern": "./apps/*" }, |
| 34 | + { "pattern": "./packages/*" } |
| 35 | + ], |
| 36 | + |
| 37 | + "typescript.tsdk": "node_modules/typescript/lib", |
| 38 | + "typescript.enablePromptUseWorkspaceTsdk": true, |
| 39 | + "typescript.preferences.includePackageJsonAutoImports": "on", |
| 40 | + |
| 41 | + "explorer.fileNesting.enabled": true, |
| 42 | + "explorer.fileNesting.patterns": { |
| 43 | + "*.ts": "${capture}.js, ${capture}.d.ts, ${capture}.test.ts", |
| 44 | + "*.tsx": "${capture}.test.tsx", |
| 45 | + "package.json": "pnpm-lock.yaml, pnpm-workspace.yaml, turbo.json, .npmrc", |
| 46 | + "tsconfig.json": "tsconfig.*.json" |
| 47 | + }, |
| 48 | + |
| 49 | + "workbench.editor.customLabels.patterns": { |
| 50 | + "**/app/**/page.tsx": "${dirname} - Page", |
| 51 | + "**/app/**/layout.tsx": "${dirname} - Layout", |
| 52 | + "**/app/**/template.tsx": "${dirname} - Template", |
| 53 | + "**/components/**/index.tsx": "${dirname} - Component" |
| 54 | + }, |
| 55 | + "workbench.editor.customLabels.enabled": true, |
| 56 | + |
| 57 | + "git.ignoreLimitWarning": true |
| 58 | +} |
0 commit comments