Add flake8 etc to vscode settings
This commit is contained in:
parent
b3fb6fd80a
commit
0fb5c170cb
1 changed files with 39 additions and 31 deletions
|
@ -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,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue