diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 8445274..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "chrome", - "request": "launch", - "name": "Launch Chrome against localhost", - "url": "http://localhost:5173", - "webRoot": "${workspaceFolder}", - "preLaunchTask": "npm: dev" - } - ] -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index e2098f4..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "editor.formatOnSave": true, - "editor.codeActionsOnSave": { - "source.fixAll.biome": "explicit" - }, - "[css]": { - "editor.defaultFormatter": "biomejs.biome" - }, - "[javascript]": { - "editor.defaultFormatter": "biomejs.biome" - }, - "[javascriptreact]": { - "editor.defaultFormatter": "biomejs.biome" - }, - "[json]": { - "editor.defaultFormatter": "biomejs.biome" - }, - "[jsonc]": { - "editor.defaultFormatter": "biomejs.biome" - }, - "[typescript]": { - "editor.defaultFormatter": "biomejs.biome" - }, - "[typescriptreact]": { - "editor.defaultFormatter": "biomejs.biome" - }, - // Extensions - Biome - // - see: biome.json - // Exteions - cSpell - // - see: .cspell.json - // Extensions - HTML - "html.format.wrapLineLength": 0, - // Extentions - Typescript - "javascript.updateImportsOnFileMove.enabled": "always", - "typescript.updateImportsOnFileMove.enabled": "always" -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index ee76fa1..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "type": "npm", - "script": "dev", - "isBackground": true, - "problemMatcher": { - "owner": "custom", - "pattern": { "regexp": "^$" }, - "background": { - "activeOnStart": true, - "beginsPattern": ".*", - "endsPattern": "Local:" - } - }, - "label": "npm: dev" - } - ] -}