mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 14:22:51 +00:00
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"typescript.tsserver.maxTsServerMemory": 8192,
|
|
"typescript.tsserver.nodePath": "node",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "never",
|
|
"source.fixAll": "explicit",
|
|
"source.sortMembers": "explicit"
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"prettier.ignorePath": "",
|
|
"prettier.requireConfig": true,
|
|
"duplicatedCode.options": {
|
|
"absolute": true,
|
|
"silent": true,
|
|
"gitignore": true,
|
|
"noSymlinks": false,
|
|
"threshold": 0,
|
|
"minTokens": 50,
|
|
"minLines": 33,
|
|
"maxLines": 1000,
|
|
"maxSize": "100kb"
|
|
},
|
|
"duplicatedCode.exclude": [
|
|
"**/.expo/**",
|
|
"**/.turbo/**",
|
|
"**/mnt/**",
|
|
"**/dist/**",
|
|
"**/node_modules/**",
|
|
"**/android/**"
|
|
],
|
|
"[astro]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"astro", // Enable .astro
|
|
"typescript", // Enable .ts
|
|
"typescriptreact" // Enable .tsx
|
|
],
|
|
"tailwindCSS.classAttributes": [
|
|
"class",
|
|
"className",
|
|
"ngClass",
|
|
".*className"
|
|
],
|
|
// Turbo example included it
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"mode": "auto"
|
|
}
|
|
],
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "vscode.typescript-language-features"
|
|
}
|
|
}
|