Files
metabuilder/postgres/.vscode/settings.json
johndoe6345789 a51130a127 feat: Add external low-code and postgres repositories
- codegen: Low-code React app with JSON-driven component system
- packagerepo: Schema-driven package repository with backend/frontend
- postgres: Next.js app with Drizzle ORM and PostgreSQL

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 16:48:52 +00:00

67 lines
1.7 KiB
JSON

{
"editor.tabSize": 2,
"editor.detectIndentation": false,
"search.exclude": {
"package-lock.json": true
},
// TypeScript
"typescript.tsdk": "node_modules/typescript/lib", // Use the workspace version of TypeScript
"typescript.enablePromptUseWorkspaceTsdk": true, // For security reasons it's require that users opt into using the workspace version of typescript
"typescript.preferences.autoImportSpecifierExcludeRegexes": [
// useRouter should be imported from `next/navigation` instead of `next/router`
"next/router",
// give priority for Link to next/link instead of lucide-react
"lucide-react",
// Not used in the project and conflicts with `use()` from React
"chai",
// Use Zod v4 instead of v3
"zod/v3",
// Sentry is imported with `import *`
"@sentry/nextjs"
],
// Vitest
"testing.automaticallyOpenTestResults": "neverOpen", // Don't open the test results automatically
// I18n
"i18n-ally.localesPaths": ["src/locales"],
"i18n-ally.keystyle": "nested",
// Disable the default formatter, use ESLint instead
"prettier.enable": false,
"editor.formatOnSave": false,
// Auto fix with ESLint on save
"editor.codeActionsOnSave": {
"source.addMissingImports": "explicit",
"source.fixAll.eslint": "explicit"
},
// Enable eslint for all supported languages
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml",
"toml",
"xml",
"gql",
"graphql",
"astro",
"svelte",
"css",
"less",
"scss",
"pcss",
"postcss",
"github-actions-workflow"
]
}