From 1553dee1cb97a11fff9df2553cf9dfb089cb63f5 Mon Sep 17 00:00:00 2001 From: petitminion Date: Thu, 20 Jul 2023 11:38:59 +0000 Subject: [PATCH] delete vscode config files NOCHANGELOG --- .gitignore | 3 + .vscode/launch.json | 36 ----------- .vscode/markdown.code-snippets | 108 --------------------------------- .vscode/settings.json | 14 ----- 4 files changed, 3 insertions(+), 158 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/markdown.code-snippets delete mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 64ef31b0e..b37e36601 100644 --- a/.gitignore +++ b/.gitignore @@ -101,3 +101,6 @@ metadata.json # Linting .eslintcache tsconfig.tsbuildinfo + +# Vscode +.vscode/ diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 28802f09c..000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "Attach python debugger", - "type": "python", - "request": "attach", - "connect": { - "host": "localhost", - "port": 5678 - }, - "django": true - }, - { - "name": "Debug python", - "type": "python", - "request": "launch", - "module": "uvicorn", - "cwd": "${workspaceFolder}/api", - "envFile": "${workspaceFolder}/.gitpod/.env", - "args": [ - "--reload", - "config.asgi:application", - "--host", - "0.0.0.0", - "--port", - "5000", - "--reload-dir", - "config/", - "--reload-dir", - "funkwhale_api/" - ], - "django": true - } - ] -} diff --git a/.vscode/markdown.code-snippets b/.vscode/markdown.code-snippets deleted file mode 100644 index 3fe4b1dd2..000000000 --- a/.vscode/markdown.code-snippets +++ /dev/null @@ -1,108 +0,0 @@ -{ - "Callout": { - "prefix": "callout", - "description": "Add a callout to highlight information", - "body": [ - ":::{${1|attention,caution,danger,error,hint,important,note,seealso,tip,warning|}} ${2:Optional title}", - "${0:${TM_SELECTED_TEXT}}", - ":::" - ], - }, - "Code tabs": { - "prefix": "code-tabs", - "description": "Insert a set of code tabs", - "body": [ - ":::{tab-set-code}", - "", - "$0", - "", - ":::" - ] - }, - "Tab set": { - "prefix": "tab-set", - "description": "Insert a group of generic tabs", - "body": [ - "::::{tab-set}", - ":::{tab-item} ${1:Tab title}", - "$2", - ":::", - "", - ":::{tab-item} ${3:Tab title}", - "$0", - ":::", - "", - "::::" - ] - }, - "Insert fragment": { - "prefix": "insert fragment", - "description": "Insert reusable text from another file", - "body": [ - ":::{include} ${1:full path to file}", - ":start-after: ${2:the text to start after}", - ":end-before: ${0:the text to end before}", - ":::" - ] - }, - "Dropdown": { - "prefix": "insert dropdown", - "description": "Insert a dropdown (accordion)", - "body": [ - ":::{dropdown} ${1:title}", - "${0:${TM_SELECTED_TEXT}}", - ":::" - ] - }, - "Versioning": { - "prefix": "version change", - "description": "Specify when a feature was added, changed, or deprecated", - "body": [ - ":::{${1|versionadded,versionchanged,deprecated|}} ${2:v4.32.0}", - "${0:${TM_SELECTED_TEXT}}", - ":::" - ] - }, - "List table": { - "prefix": "list table", - "description": "Insert a table defined as a set of lists", - "body": [ - ":::{list-table} ${1:Optional title}", - ":header-rows: ${2:Number of header rows}", - "", - "* - ${3: First row column 1}", - " - ${4: First row column 2}", - "* - ${5: Second row column 1}", - " - ${0: Second row column 2}", - ":::" - ] - }, - "Guilabel": { - "prefix": "guilabel", - "description": "Format text as a GUI label (e.g. a button label or interface label", - "body": [ - "{guilabel}`${0:${TM_SELECTED_TEXT}}`" - ] - }, - "File": { - "prefix": "file", - "description": "Format text as a file name or path", - "body": [ - "{file}`${0:${TM_SELECTED_TEXT}}`" - ] - }, - "Increase indent": { - "prefix": "increase indent", - "description": "Increase the indentation of all selected colon or backtick fences", - "body": [ - "${TM_SELECTED_TEXT/((?[`:])\\k{2,})/$1$2/gm}" - ] - }, - "Deprecation warning": { - "prefix": "insert deprecation warning", - "description": "Inserts an inline deprecation badge. Useful in tables of parameters", - "body": [ - "{bdg-warning}`Deprecated`" - ] - } -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 5e3690630..000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "python.defaultInterpreterPath": "/workspace/funkwhale/api/.venv/bin/python", - "python.testing.cwd": "/workspace/funkwhale/api", - "python.envFile": "/workspace/funkwhale/.gitpod/.env", - "python.testing.pytestArgs": ["--cov=funkwhale_api", "tests/"], - "python.testing.unittestEnabled": false, - "python.testing.pytestEnabled": true, - "vitest.enable": true, - "vitest.commandLine": "yarn vitest", - "i18n-ally.localesPaths": ["front/src/locales"], - "i18n-ally.pathMatcher": "*.json", - "i18n-ally.enabledFrameworks": ["vue"], - "i18n-ally.keystyle": "nested" -}