voice-changer/.vscode/settings.json
2024-06-03 20:19:11 +09:00

18 lines
522 B
JSON

{
"[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"]
}