mirror of
https://forgejo.altau.su/lego/lego-monitoring.git
synced 2026-03-09 20:31:10 +00:00
25 lines
568 B
JSON
25 lines
568 B
JSON
{
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit"
|
|
},
|
|
},
|
|
"isort.args": [
|
|
"--profile",
|
|
"black"
|
|
],
|
|
"black-formatter.args": [
|
|
"--line-length=120"
|
|
],
|
|
"python.testing.unittestArgs": [
|
|
"-v",
|
|
"-s",
|
|
"./tests",
|
|
"-p",
|
|
"test_*.py"
|
|
],
|
|
"python.testing.pytestEnabled": false,
|
|
"python.testing.unittestEnabled": true
|
|
}
|