Browse Source

chore(vscode): Remove deprecated python settings (#59225)

Scott Cooper 1 year ago
parent
commit
09ec8ce91f
1 changed files with 1 additions and 12 deletions
  1. 1 12
      .vscode/settings.json

+ 1 - 12
.vscode/settings.json

@@ -70,20 +70,9 @@
     "editor.formatOnSave": false
   },
 
-  "python.linting.pylintEnabled": false,
-  "python.linting.flake8Enabled": true,
-  // test discovery is sluggish and the UI around running
-  // tests is often in your way and misclicked
+  "editor.tabSize": 4,
   "python.testing.pytestEnabled": true,
   "python.testing.unittestEnabled": false,
-  "python.testing.nosetestsEnabled": false,
-  "editor.tabSize": 4,
-  "restructuredtext.confPath": "",
-  "python.linting.enabled": true,
-  "python.linting.flake8Path": "${workspaceFolder}/.venv/bin/flake8",
-  "python.linting.pycodestylePath": "${workspaceFolder}/.venv/bin/pep8",
   "python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest",
-  "python.formatting.blackPath": "${workspaceFolder}/.venv/bin/black",
-  "python.formatting.provider": "none",
   "python.testing.pytestArgs": ["tests"]
 }