17 lines
603 B
JSON
17 lines
603 B
JSON
{
|
|
"python.pythonPath": ".venv/bin/python",
|
|
"python.formatting.provider": "black",
|
|
"python.formatting.blackArgs": ["--line-length=79" ],
|
|
"python.formatting.autopep8Args": ["--max-line-length=79" ],
|
|
"python.linting.enabled": true,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.linting.pylintEnabled": true,
|
|
"python.linting.lintOnSave": true,
|
|
"python.linting.flake8Args": [
|
|
"--max-line-length=79"
|
|
],
|
|
"python.linting.pylintArgs": [
|
|
"--disable=C0111" // Disable missing docstring warnings if needed
|
|
],
|
|
"files.autoSave": "onFocusChange"
|
|
} |