From efabbab743901889b2f7cc8b44cd842ab23c20dc Mon Sep 17 00:00:00 2001 From: Patrick Tannoury Date: Sat, 22 Aug 2026 13:56:44 +0200 Subject: [PATCH] chore: untrack .vscode and add it to .gitignore .vscode/settings.json carried personal editor preferences - a pipenv env manager choice and Pylance analysis settings - that every contributor's editor would fight over. Nothing in the build, tests or CI reads it. The .gitignore already shipped a commented-out .vscode/ entry from the GitHub Python template; this uncomments it so the directory stays out from now on. --- .gitignore | 2 +- .vscode/settings.json | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 1dec406..46f4ef2 100644 --- a/.gitignore +++ b/.gitignore @@ -186,7 +186,7 @@ cython_debug/ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore # and can be added to the global gitignore or merged into this file. However, if you prefer, # you could uncomment the following to ignore the entire vscode folder -# .vscode/ +.vscode/ # Ruff stuff: .ruff_cache/ diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index ae488c3..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "python-envs.defaultEnvManager": "ms-python.python:pipenv", - "python-envs.pythonProjects": [], - "python.analysis.typeCheckingMode": "standard", - "python.analysis.autoImportCompletions": true -} \ No newline at end of file