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