workspace settings

This commit is contained in:
Alex 2024-06-16 16:18:54 +03:00
parent e12c949fa8
commit 9e0203a59f

16
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
"[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"
]
}