owltide/.vscode/settings.json

22 lines
682 B
JSON
Raw Normal View History

{
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"tsconfig.json": "tsconfig.*.json, env.d.ts",
"vite.config.*": "jsconfig*, vitest.config.*, cypress.config.*, playwright.config.*",
"package.json": "package-lock.json, bun.lockb, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .prettier*, prettier*"
},
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"[yaml]": {
"editor.indentSize": 2,
"editor.insertSpaces": true,
},
2025-02-26 21:54:28 +01:00
"typescript.tsdk": "node_modules\\typescript\\lib",
}