From 024e355b97400c105acab2ff06ab748941bd0532 Mon Sep 17 00:00:00 2001 From: "eric.crowell" Date: Fri, 14 Jun 2024 11:52:13 +0200 Subject: [PATCH] dev: Removed vscode settings in favor of a workspace --- .vscode/extensions.json | 7 ---- .vscode/settings.json | 72 ----------------------------------------- 2 files changed, 79 deletions(-) delete mode 100644 .vscode/extensions.json delete mode 100644 .vscode/settings.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index a9a7347..0000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "recommendations": [ - "dbaeumer.vscode-eslint", - "bradlc.vscode-tailwindcss", - "graphql.vscode-graphql-syntax" - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 327ab7e..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "editor.tabSize": 2, - "editor.insertSpaces": true, - "editor.detectIndentation": false, - "editor.formatOnSave": false, - "editor.codeActionsOnSave": { - "source.fixAll.eslint": "explicit" - }, - "editor.defaultFormatter": "dbaeumer.vscode-eslint", - "editor.quickSuggestions": { - "strings": "on", - }, - "javascript.updateImportsOnFileMove.enabled": "never", - "eslint.enable": true, - "eslint.run": "onSave", - "eslint.validate": [ - "javascript", - "javascriptreact", - "typescript", - "typescriptreact" - ], - "files.eol": "\n", - "files.associations": { - "*.ejs": "html", - "*.ejs.t": "html", - "*.css": "tailwindcss" - }, - "files.exclude": { - "**/.git": true, - "**/.svn": true, - "**/.hg": true, - "**/CVS": true, - "**/.DS_Store": true, - "**/node_modules": true, - "**/wwwroot": true - }, - "search.exclude": { - "**/.git": true, - "**/.yarn": true, - "**/node_modules": true, - "**/bower_components": true, - "**/*.code-search": true, - "**/.dist": true, - "**/.types": true, - "**/.out": true, - "**/.pkg": true, - "**/.srv": true, - "**/.web": true, - "**/dist": true, - "**/types": true, - "**/out": true, - "**/pkg": true, - "**/srv": true, - "**/.angular": true, - "**/.vscode": true, - "**/*.lock": true, - "**/*lock.yaml": true, - "**/package-lock.json": true, - "**/*.tsbuildinfo": true, - "**/*.schema.json": true, - "**/.pnp.*": true - }, - "html.format.unformatted": "wbr,%", - "debug.internalConsoleOptions": "neverOpen", - "npm.packageManager": "pnpm", - "[typescriptreact]": { - "editor.defaultFormatter": "vscode.typescript-language-features", - }, - "[jsonc]": { - "editor.defaultFormatter": "vscode.json-language-features" - }, - } \ No newline at end of file