mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-23 13:35:12 +03:00
75668e1534
- device output recorder button is showed in server device mode. Feature: - server device monitor Improve: - default uvicorn error log
18 lines
551 B
JSON
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
|
|
}
|