Add flake8 etc to vscode settings

This commit is contained in:
Jake Howard 2018-03-16 13:30:52 +00:00
parent b3fb6fd80a
commit 0fb5c170cb
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -29,5 +29,13 @@
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"auto-close-tag.SublimeText3Mode": true
"auto-close-tag.SublimeText3Mode": true,
"python.pythonPath": "${workspaceRoot}/env/bin/python",
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": "${workspaceRoot}/env/bin/flake8",
"python.linting.pylintEnabled": false,
"python.linting.flake8Args": [
"--ignore=E501"
],
"python.linting.lintOnSave": true,
}