From 487f50d1b983a0cd685db67c187796019b94c85a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?The=20Vinh=20LUONG=20=28L=C6=AF=C6=A0NG=20Th=E1=BA=BF=20Vi?= =?UTF-8?q?nh=29?= Date: Tue, 7 Nov 2023 15:56:58 -0800 Subject: [PATCH] remove legacy VSCode linting configs --- .vscode/settings.json | 42 +++--------------------------------------- 1 file changed, 3 insertions(+), 39 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 26eeef4..0a1ef4c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,47 +6,11 @@ "**/.mypy_cache": true, "**/*.pyc": {"when": "$(basename).py"}, "**/__pycache__": true, - "**/.ropeproject": true, + "**/.ropeproject": true }, "python.analysis.diagnosticSeverityOverrides": { "reportMissingImports": "none", - "reportUndefinedVariables": "none", - }, - - "python.linting.enabled": true, - - "python.linting.pylintEnabled": true, - "python.linting.pylintArgs": [ - "--disable", "c-extension-no-member", - "--disable", "global-statement", - "--disable", "invalid-name", - "--disable", "missing-class-docstring", - "--disable", "missing-function-docstring", - "--disable", "missing-module-docstring", - "--disable", "no-member", - "--disable", "no-name-in-module", - "--disable", "too-many-instance-attributes", - "--disable", "wrong-import-order", - ], - - "python.linting.flake8Enabled": true, - - "python.linting.mypyEnabled": false, - - "python.linting.pydocstyleEnabled": false, - - "python.linting.pycodestyleEnabled": true, - - "python.linting.prospectorEnabled": true, - - "python.linting.pylamaEnabled": true, - "python.linting.pylamaArgs": [ - "--ignore=C901", - ], - - "python.linting.banditEnabled": true, - "python.linting.banditArgs": [ - "--skip=B311", - ] + "reportUndefinedVariables": "none" + } }