diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 689c17db..8f568e57 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -25,7 +25,7 @@ repos: - id: debug-statements - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.16.5 + rev: v0.16.6 hooks: - id: ruff-check args: [--fix, --exit-non-zero-on-fix, --respect-gitignore, --show-fixes] @@ -38,7 +38,7 @@ repos: args: [--no-progress, --fix] - repo: https://github.com/tox-dev/pyproject-fmt - rev: v2.28.1 + rev: v2.29.3 hooks: - id: pyproject-fmt @@ -54,7 +54,7 @@ repos: - id: check-python-version-consistency - repo: https://github.com/kjanat/actionlint - rev: v1.14.0 + rev: v1.15.1 hooks: - id: actionlint diff --git a/pyproject.toml b/pyproject.toml index 4a4d41c7..3bf64402 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -78,11 +78,11 @@ line-length = 120 [tool.ruff.lint] select = [ + "D", # pydocstyle "E", # pycodestyle "F", # pyflakes - "I", # isort - "D", # pydocstyle "FBT", # flake8-boolean-trap + "I", # isort "PT", # flake8-pytest-style ]