Skip to content

Commit

Permalink
chore: Update VSCode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns committed Feb 8, 2025
1 parent 60843de commit 3ddc79e
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,32 @@
{
"search.exclude": {
"node_modules": true,
"dist": true,
".git": true,
".eslintcache": true
},
"files.exclude": {
"**/.DS_Store": true
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.ts": "$(capture).*",
".env": ".env.*",
".env.*": ".env.${capture}.local",
"package.json": "bun.lockb, package-lock.json, pnpm-lock.yaml, yarn.lock, .npmrc",
"tsconfig.json": "tsconfig.*.json, tsconfig.tsbuildinfo",
"tsconfig.tsbuildinfo": "tsconfig.*.tsbuildinfo"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"javascript.preferences.importModuleSpecifier": "shortest",
"javascript.preferences.importModuleSpecifierEnding": "js",
"typescript.preferences.importModuleSpecifier": "shortest",
"typescript.preferences.importModuleSpecifierEnding": "js"
"typescript.tsdk": "./node_modules/typescript/lib",
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
]
}

0 comments on commit 3ddc79e

Please sign in to comment.