2025-06-30 18:58:24 +02:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: © 2025 Hornwitser <code@hornwitser.no>
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
*/
|
2025-02-26 12:05:32 +01:00
|
|
|
{
|
|
|
|
"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": {
|
2025-03-14 17:51:07 +01:00
|
|
|
"source.fixAll.eslint": "explicit"
|
2025-02-26 12:05:32 +01:00
|
|
|
},
|
|
|
|
"editor.detectIndentation": false,
|
|
|
|
"editor.insertSpaces": false,
|
|
|
|
"files.eol": "\n",
|
|
|
|
"files.insertFinalNewline": true,
|
|
|
|
"files.trimFinalNewlines": true,
|
|
|
|
"[yaml]": {
|
|
|
|
"editor.indentSize": 2,
|
|
|
|
"editor.insertSpaces": true,
|
|
|
|
},
|
|
|
|
}
|