diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 611e462..33a93e9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,8 +12,8 @@ repos: hooks: - id: isort - - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: "v0.0.270" + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: "v0.0.272" hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] diff --git a/pyproject.toml b/pyproject.toml index 8f8bc12..446221b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ profile = "black" known_first_party = ["launch", "modules"] [tool.ruff] -select = ["A", "B", "C4", "E", "F", "I001", "ISC", "N", "PIE", "PT", "RET", "SIM", "UP", "W"] +select = ["A", "B", "C4", "C90", "COM", "E", "EM", "F", "FA", "I001", "ISC", "N", "PIE", "PT", "RET", "RUF", "SIM", "UP", "W"] ignore = ["B008", "B905", "E501", "F401", "UP007"] [tool.ruff.isort]