voice-changer/.vscode/settings.json

18 lines
522 B
JSON
Raw Normal View History

2023-02-08 21:11:38 +03:00
{
2024-06-03 14:19:11 +03:00
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"[markdown]": {
"editor.wordWrap": "off"
},
"flake8.args": ["--max-line-length=1024", "--ignore=E402,E203,E722"],
"workbench.colorCustomizations": {
"tab.activeBackground": "#65952acc"
},
"black-formatter.args": ["--line-length", "550"],
"python.testing.pytestArgs": ["tests"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"mypy-type-checker.args": ["--config-file=mypy.ini"]
}