jtftp/.vscode/settings.json
2022-07-07 12:37:41 -05:00

24 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"
]
}