diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 13133c498d..2bfdae39cb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,5 +1,5 @@ repos: -- repo: https://github.com/arichtman/ruff - rev: ft-pre-commit-hook - hooks: - - id: lint \ No newline at end of file + - repo: https://github.com/charliermarsh/ruff + rev: v0.0.23 + hooks: + - id: lint diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index e461941a28..5c0f6484e0 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -1,7 +1,7 @@ -- id: lint - name: ruff lint - description: runs a ruff lint against all Python files - entry: ruff - language: python - types_or: [python] - pass_filenames: true +- id: lint + name: ruff lint + description: Run ruff to lint Python files. + entry: ruff + language: python + types_or: [python] + pass_filenames: true