23 lines
641 B
JSON
23 lines
641 B
JSON
{
|
|
"python.formatting.provider": "black",
|
|
"editor.formatOnSave": true,
|
|
"files.autoSave": "afterDelay",
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.linting.flake8Args": [
|
|
"--max-line-length=88",
|
|
"--extend-ignore=E501",
|
|
"--extend-select=B950"
|
|
],
|
|
"python.formatting.blackArgs": [
|
|
"--line-length=88"
|
|
],
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true,
|
|
},
|
|
"python.sortImports.args": [
|
|
"--force-single-line-imports"
|
|
]
|
|
}
|