voice-changer/server/.vscode/settings.json
w-okada 75668e1534 Bugfix:
- device output recorder button is showed in server device mode.
Feature:
 - server device monitor
Improve:
 - default uvicorn error log
2023-07-01 14:57:57 +09:00

18 lines
551 B
JSON

{
"workbench.colorCustomizations": {
"tab.activeBackground": "#65952acc"
},
"python.formatting.provider": "black",
"python.linting.mypyEnabled": false,
"[python]": {
"editor.defaultFormatter": null, // Prettier を使わないようにする
"editor.formatOnSave": true // ファイル保存時に自動フォーマット
},
"python.formatting.blackArgs": ["--line-length", "550"],
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--max-line-length=99999"
],
"python.linting.enabled": true
}