2023-04-27 17:38:25 +03:00
|
|
|
{
|
|
|
|
"workbench.colorCustomizations": {
|
|
|
|
"tab.activeBackground": "#65952acc"
|
|
|
|
},
|
|
|
|
"python.formatting.provider": "black",
|
|
|
|
"python.linting.mypyEnabled": true,
|
|
|
|
"[python]": {
|
|
|
|
"editor.defaultFormatter": null, // Prettier を使わないようにする
|
|
|
|
"editor.formatOnSave": true // ファイル保存時に自動フォーマット
|
|
|
|
},
|
2023-06-15 20:50:05 +03:00
|
|
|
"python.formatting.blackArgs": ["--line-length", "550"],
|
2023-04-27 17:38:25 +03:00
|
|
|
"flake8.args": [
|
2023-05-07 23:51:24 +03:00
|
|
|
"--ignore=E501,E402,E722,E741,E203,W503"
|
2023-04-27 17:38:25 +03:00
|
|
|
// "--max-line-length=150",
|
|
|
|
// "--max-complexity=20"
|
|
|
|
]
|
|
|
|
}
|