voice-changer/server/.vscode/settings.json

18 lines
551 B
JSON
Raw Normal View History

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