pylint now uses tab indent

This commit is contained in:
Arthur Lu 2022-03-29 04:15:47 +00:00
parent 14f8901803
commit 0212e6b2ca

View File

@ -9,9 +9,10 @@
"python.linting.enabled": true, "python.linting.enabled": true,
"python.linting.pylintEnabled": true, "python.linting.pylintEnabled": true,
"python.linting.pylintPath": "/usr/local/bin/pylint", "python.linting.pylintPath": "/usr/local/bin/pylint",
"python.linting.pylintArgs": ["--indent-string", "\t"],
"python.testing.pytestPath": "/usr/local/bin/pytest", "python.testing.pytestPath": "/usr/local/bin/pytest",
"editor.tabSize": 4, "editor.tabSize": 4,
"editor.insertSpaces": false "editor.insertSpaces": false
}, },
"extensions": [ "extensions": [
"mhutchie.git-graph", "mhutchie.git-graph",