在 Python 專案使用 Ruff 程式碼檢查工具 Memo's Blog 2024-04-26 Others Programming, Python 做法安裝依賴套件。 1poetry add ruff 新增 ruff.toml 檔。 12345line-length = 120indent-width = 4[format]quote-style = "double" 修改 .vscode/settings.json 檔。 12345678910{ "[python]": { "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.fixAll": "explicit", "source.organizeImports": "explicit" }, "editor.defaultFormatter": "charliermarsh.ruff" }} 參考資料 astral-sh/ruff