38 lines
1015 B
JSON
38 lines
1015 B
JSON
{
|
|
"prettier.enable": false,
|
|
"eslint.enable": false,
|
|
"files.associations": {
|
|
"*.css": "tailwindcss"
|
|
},
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports.biome": "explicit"
|
|
},
|
|
"[prisma]": {
|
|
"editor.defaultFormatter": "Prisma.prisma"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"tailwindCSS.experimental.classRegex": [
|
|
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
|
|
["cx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"],
|
|
[
|
|
"\\b\\w+ClassName\\s*=\\s*[\"'`]([^\"'`]*)[\"'`]",
|
|
"[\"'`]([^\"'`]*)[\"'`]"
|
|
]
|
|
],
|
|
"typescript.enablePromptUseWorkspaceTsdk": true,
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"typescript.preferences.autoImportFileExcludePatterns": [
|
|
"next/router.d.ts",
|
|
"next/dist/client/router.d.ts"
|
|
]
|
|
}
|