mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-25 09:14:22 +01:00
18 lines
485 B
JSON
18 lines
485 B
JSON
{
|
|
"editor.tabSize": 2,
|
|
// typescript
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"typescript.preferences.importModuleSpecifier": "relative",
|
|
// biome
|
|
"biome.enabled": true,
|
|
// autofix
|
|
"editor.formatOnSave": false,
|
|
"[typescript][typescriptreact][javascript][javascriptreact][json][jsonc][json][yaml]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.ts": "explicit"
|
|
}
|
|
}
|