From c4927288d59a2266d93797b283cc72dde71c72ac Mon Sep 17 00:00:00 2001 From: Luciana Abud <45497113+luabud@users.noreply.github.com> Date: Wed, 18 Oct 2023 15:09:37 -0700 Subject: [PATCH] Remove deprecated Python settings (#671) --- src/anaconda/.devcontainer/devcontainer.json | 10 +--------- src/miniconda/.devcontainer/devcontainer.json | 13 +------------ src/universal/.devcontainer/devcontainer.json | 8 -------- 3 files changed, 2 insertions(+), 29 deletions(-) diff --git a/src/anaconda/.devcontainer/devcontainer.json b/src/anaconda/.devcontainer/devcontainer.json index 99d8518bd..2caef39c7 100644 --- a/src/anaconda/.devcontainer/devcontainer.json +++ b/src/anaconda/.devcontainer/devcontainer.json @@ -18,15 +18,7 @@ "vscode": { // Set *default* container specific settings.json values on container create. "settings": { - "python.defaultInterpreterPath": "/opt/conda/bin/python", - "python.linting.enabled": true, - "python.linting.pylintEnabled": true, - "python.formatting.autopep8Path": "/opt/conda/bin/autopep8", - "python.formatting.yapfPath": "/opt/conda/bin/yapf", - "python.linting.flake8Path": "/opt/conda/bin/flake8", - "python.linting.pycodestylePath": "/opt/conda/bin/pycodestyle", - "python.linting.pydocstylePath": "/opt/conda/bin/pydocstyle", - "python.linting.pylintPath": "/opt/conda/bin/pylint" + "python.defaultInterpreterPath": "/opt/conda/bin/python" }, // Add the IDs of extensions you want installed when the container is created. "extensions": [ diff --git a/src/miniconda/.devcontainer/devcontainer.json b/src/miniconda/.devcontainer/devcontainer.json index 34c4dddac..d9a9f4479 100644 --- a/src/miniconda/.devcontainer/devcontainer.json +++ b/src/miniconda/.devcontainer/devcontainer.json @@ -17,18 +17,7 @@ "vscode": { // Set *default* container specific settings.json values on container create. "settings": { - "python.defaultInterpreterPath": "/opt/conda/bin/python", - "python.linting.enabled": true, - "python.linting.pylintEnabled": true, - "python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8", - "python.formatting.blackPath": "/usr/local/py-utils/bin/black", - "python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf", - "python.linting.banditPath": "/usr/local/py-utils/bin/bandit", - "python.linting.flake8Path": "/usr/local/py-utils/bin/flake8", - "python.linting.mypyPath": "/usr/local/py-utils/bin/mypy", - "python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle", - "python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle", - "python.linting.pylintPath": "/usr/local/py-utils/bin/pylint" + "python.defaultInterpreterPath": "/opt/conda/bin/python" }, // Add the IDs of extensions you want installed when the container is created. "extensions": [ diff --git a/src/universal/.devcontainer/devcontainer.json b/src/universal/.devcontainer/devcontainer.json index ecc4a63b6..add954124 100644 --- a/src/universal/.devcontainer/devcontainer.json +++ b/src/universal/.devcontainer/devcontainer.json @@ -117,14 +117,6 @@ "go.useLanguageServer": true, "go.gopath": "/go", "python.defaultInterpreterPath": "/home/codespace/.python/current/bin/python3", - "python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8", - "python.formatting.blackPath": "/usr/local/py-utils/bin/black", - "python.linting.flake8Path": "/usr/local/py-utils/bin/flake8", - "python.linting.flake8Enabled": false, - "python.linting.mypyPath": "/usr/local/py-utils/bin/mypy", - "python.linting.mypyEnabled": false, - "python.linting.pylintPath": "/usr/local/py-utils/bin/pylint", - "python.linting.pylintEnabled": false, "jupyter.kernels.filter": [ { "path": "/opt/conda/bin/python",