Configure pylint for Google's Python style.

Adding pylint configuration, VSCode configuration to lint on save and
make the deploy.py script compliant.
This commit is contained in:
Jean-Michel
2020-02-21 17:41:40 +01:00
parent cb13ff6962
commit e9f69170e4
3 changed files with 241 additions and 13 deletions

View File

@@ -14,7 +14,10 @@
"python.formatting.yapfArgs": [
"--style=chromium"
],
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.pylintEnabled": true,
"[python]": {
"editor.tabSize": 2
},
}
}