later42/.vscode/settings.json
Dmitriy Lyalyuev 14251f75aa
All checks were successful
continuous-integration/drone/push Build is passing
VSCode config
2022-11-30 09:50:28 +03:00

21 lines
563 B
JSON

{
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length=120"
],
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.pylintArgs": [
"--load-plugins",
"pylint_django",
"--django-settings-module=core.settings",
"--max-line-length=120"
],
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"python.linting.mypyEnabled": true
}