17 lines
472 B
JSON
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,
|
||
|
}
|