greendeck/.vscode/settings.json
2022-12-13 14:25:50 -06:00

17 lines
472 B
JSON

{
"python.formatting.provider": "black",
"python.linting.flake8Enabled": true,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"python.analysis.typeCheckingMode": "off",
"python.linting.enabled": true,
"python.linting.flake8Args": [
"--max-line-length=88",
"--extend-ignore=E203"
],
"python.linting.pylintEnabled": false,
}