Skip to content

Commit 836843f

Browse files
authored
Update VS Code setting for the Python extension (#481)
Remove tool paths for things that are planned for removal from the Python extension (hopefully) this year. Also explicitly turn linting off by default as they are moving to their own extensions (which already exist), and to minimize noise (e.g. Pylint complaining about imports). This brings things in line with https://github.com/devcontainers/features/tree/main/src/python .
1 parent 3e74cb8 commit 836843f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/universal/.devcontainer/devcontainer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,12 @@
114114
"python.defaultInterpreterPath": "/home/codespace/.python/current/bin/python3",
115115
"python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8",
116116
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
117-
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf",
118-
"python.linting.banditPath": "/usr/local/py-utils/bin/bandit",
119117
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8",
118+
"python.linting.flake8Enabled": false,
120119
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy",
121-
"python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle",
122-
"python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle",
120+
"python.linting.mypyEnabled": false,
123121
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint",
122+
"python.linting.pylintEnabled": false,
124123
"jupyter.kernels.filter": [
125124
{
126125
"path": "/opt/conda/bin/python",

0 commit comments

Comments
 (0)