remove some deprecated values

This commit is contained in:
Jörn-Michael Miehe 2023-09-03 16:37:43 +00:00
parent 73bfc16bfd
commit 48f58a7953
2 changed files with 18 additions and 29 deletions

View file

@ -20,25 +20,15 @@
"vscode": { "vscode": {
// Set *default* container specific settings.json values on container create. // Set *default* container specific settings.json values on container create.
"settings": { "settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python", "python.defaultInterpreterPath": "/usr/local/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"
}, },
// Add the IDs of extensions you want installed when the container is created. // Add the IDs of extensions you want installed when the container is created.
"extensions": [ "extensions": [
"be5invis.toml", "be5invis.toml",
"mhutchie.git-graph", "mhutchie.git-graph",
"ms-python.python", "ms-python.python",
"ms-python.flake8", "ms-python.black-formatter",
// "ms-python.flake8",
"ms-python.isort", "ms-python.isort",
"ms-python.vscode-pylance" "ms-python.vscode-pylance"
] ]

View file

@ -1,17 +1,16 @@
{ {
"python.testing.pytestArgs": [ "python.linting.enabled": true,
"tests" "python.linting.pylintEnabled": false,
], "python.linting.flake8Enabled": true,
"python.testing.unittestEnabled": false, "python.languageServer": "Pylance",
"python.testing.pytestEnabled": true, "editor.formatOnSave": true,
"python.linting.enabled": true, "[python]": {
"python.linting.pylintEnabled": false, "editor.defaultFormatter": "ms-python.black-formatter"
"python.linting.flake8Enabled": true, },
"python.languageServer": "Pylance", "editor.codeActionsOnSave": {
"editor.formatOnSave": true, "source.organizeImports": true
"editor.codeActionsOnSave": { },
"source.organizeImports": true "git.closeDiffOnOperation": true,
}, "python.analysis.typeCheckingMode": "basic",
"git.closeDiffOnOperation": true, "python.analysis.diagnosticMode": "workspace",
"python.analysis.typeCheckingMode": "basic" }
}