lego-monitoring/.vscode/settings.json
2024-06-16 16:18:54 +03:00

16 lines
350 B
JSON

{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
},
"isort.args": [
"--profile",
"black"
],
"black-formatter.args": [
"--line-length=120"
]
}