From eadbad1e234428424f003e59131b50791bf4ffbe Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 3 May 2025 03:17:06 +0300 Subject: [PATCH] chore(monorepo): integrate VSCode config --- .vscode/settings.json | 22 ++++++++++++++ .../snippets.code-snippets | 0 _regroup/.vscode/settings.json | 30 ------------------- 3 files changed, 22 insertions(+), 30 deletions(-) rename {_regroup/.vscode => .vscode}/snippets.code-snippets (100%) delete mode 100644 _regroup/.vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json index 48c8b94ac..60b3455da 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,28 @@ { + "editor.formatOnSave": false, + "files.eol": "\n", + "i18n-ally.sourceLanguage": "en", + "i18n-ally.keystyle": "nested", "i18n-ally.localesPaths": [ "apps/server/src/assets/translations", "apps/client/src/translations" + ], + "npm.exclude": [ + "**/dist", + ], + "[jsonc]": { + "editor.defaultFormatter": "vscode.json-language-features" + }, + "[javascript]": { + "editor.defaultFormatter": "vscode.typescript-language-features" + }, + "[typescript]": { + "editor.defaultFormatter": "vscode.typescript-language-features" + }, + "[css]": { + "editor.defaultFormatter": "vscode.css-language-features" + }, + "github-actions.workflows.pinned.workflows": [ + ".github/workflows/nightly.yml" ] } \ No newline at end of file diff --git a/_regroup/.vscode/snippets.code-snippets b/.vscode/snippets.code-snippets similarity index 100% rename from _regroup/.vscode/snippets.code-snippets rename to .vscode/snippets.code-snippets diff --git a/_regroup/.vscode/settings.json b/_regroup/.vscode/settings.json deleted file mode 100644 index dd0be9432..000000000 --- a/_regroup/.vscode/settings.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "editor.formatOnSave": false, - "editor.defaultFormatter": "esbenp.prettier-vscode", - "files.eol": "\n", - "typescript.tsdk": "node_modules/typescript/lib", - "i18n-ally.sourceLanguage": "en", - "i18n-ally.keystyle": "nested", - "i18n-ally.localesPaths": ["./src/public/translations", "./translations"], - "[jsonc]": { - "editor.defaultFormatter": "vscode.json-language-features" - }, - "[javascript]": { - "editor.defaultFormatter": "vscode.typescript-language-features" - }, - "[typescript]": { - "editor.defaultFormatter": "vscode.typescript-language-features" - }, - "github-actions.workflows.pinned.workflows": [".github/workflows/nightly.yml"], - "[css]": { - "editor.defaultFormatter": "vscode.css-language-features" - }, - "npm.exclude": [ - "**/build", - "**/dist", - "**/out/**" - ], - "[xml]": { - "editor.defaultFormatter": "redhat.vscode-xml" - } -}