advent22/ui/.vscode/settings.json

32 lines
919 B
JSON
Raw Normal View History

2022-10-28 00:14:20 +00:00
{
"[scss][vue][typescript][javascript][json][jsonc][jsonl]": {
2023-09-07 01:17:00 +00:00
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.formatOnSave": false,
2023-09-07 01:17:00 +00:00
},
2022-10-28 00:14:20 +00:00
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
2024-03-21 22:00:45 +00:00
"source.organizeImports": "explicit"
2022-10-28 00:14:20 +00:00
},
2022-10-28 00:14:20 +00:00
"git.closeDiffOnOperation": true,
"editor.formatOnSave": true,
2022-11-03 17:49:25 +00:00
"editor.tabSize": 2,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"tsconfig.json": "tsconfig.*.json, env.d.ts, typed-router.d.ts",
"vite.config.*": "jsconfig*, vitest.config.*, cypress.config.*, playwright.config.*",
"package.json": "package-lock.json, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .oxlint*, oxlint*, .oxfmt*, .prettier*, prettier*, .editorconfig"
},
2022-11-03 17:49:25 +00:00
"sass.disableAutoIndent": true,
"sass.format.convert": false,
2023-09-07 01:17:00 +00:00
"sass.format.deleteWhitespace": true,
"prettier.trailingComma": "all"
2024-08-27 00:25:42 +00:00
}