delinting

This commit is contained in:
ed
2019-06-07 08:54:41 +00:00
parent 5414591362
commit fe0330f6f7
10 changed files with 63 additions and 44 deletions

15
.vscode/settings.json vendored
View File

@@ -33,6 +33,17 @@
"test_*.py"
],
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.pythonPath": "/usr/bin/python3",
"python.linting.flake8Enabled": true,
"python.linting.banditEnabled": true,
"python.linting.flake8Args": [
"--max-line-length=120",
"--ignore=E722,F405,E203,W503,W293",
],
"python.formatting.provider": "black",
"editor.formatOnSave": true,
//
// things you may wanna edit:
//
"python.pythonPath": ".env/bin/python",
//"python.linting.enabled": true,
}