#author("2025-02-04T23:51:56+09:00","","") #author("2025-02-04T23:52:12+09:00","","") [[VSCode/python/autopep8]] * VSCode - python 設定 [#lf2c44e2] ** 拡張機能インストール [#i9618eb0] - autopep8 - flake8 - isort - Black formatter - 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" ], "isort.args": [ "--profile", "black" ] ※Ctrl+, で設定画面から設定してもよい。