#author("2025-10-03T00:07:52+09:00","","") #author("2025-10-03T00:11:34+09:00","","") [[VSCode/python/autopep8]] * VSCode - python 設定 [#lf2c44e2] ** 拡張機能インストール [#i9618eb0] - autopep8 - flake8 - isort - Black formatter - Mypy Type Checker - settings.json "[python]": { "editor.defaultFormatter": "ms-python.black-formatter", "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.organizeImports": "explicit" } }, "black-formatter.args": [ "--line-length=100" ], "flake8.args": [ "--max-line-length=100" ], "black-formatter.args": [ "--line-length=88" ], "flake8.args": [ "--max-line-length=88" ], "isort.args": [ "--profile", "black" ] ※Ctrl+, で設定画面から設定してもよい。