Mirror: 0.9.9

This commit is contained in:
charliermarsh 2025-02-28 10:22:43 +00:00
parent f78b4d43a4
commit 2c8dce6094
2 changed files with 7 additions and 7 deletions

View File

@ -1,9 +1,9 @@
# ruff-pre-commit
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![image](https://img.shields.io/pypi/v/ruff/0.9.8.svg)](https://pypi.python.org/pypi/ruff)
[![image](https://img.shields.io/pypi/l/ruff/0.9.8.svg)](https://pypi.python.org/pypi/ruff)
[![image](https://img.shields.io/pypi/pyversions/ruff/0.9.8.svg)](https://pypi.python.org/pypi/ruff)
[![image](https://img.shields.io/pypi/v/ruff/0.9.9.svg)](https://pypi.python.org/pypi/ruff)
[![image](https://img.shields.io/pypi/l/ruff/0.9.9.svg)](https://pypi.python.org/pypi/ruff)
[![image](https://img.shields.io/pypi/pyversions/ruff/0.9.9.svg)](https://pypi.python.org/pypi/ruff)
[![Actions status](https://github.com/astral-sh/ruff-pre-commit/workflows/main/badge.svg)](https://github.com/astral-sh/ruff-pre-commit/actions)
A [pre-commit](https://pre-commit.com/) hook for [Ruff](https://github.com/astral-sh/ruff).
@ -20,7 +20,7 @@ To run Ruff's [linter](https://docs.astral.sh/ruff/linter) and [formatter](https
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.9.8
rev: v0.9.9
hooks:
# Run the linter.
- id: ruff
@ -34,7 +34,7 @@ To enable lint fixes, add the `--fix` argument to the lint hook:
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.9.8
rev: v0.9.9
hooks:
# Run the linter.
- id: ruff
@ -49,7 +49,7 @@ To avoid running on Jupyter Notebooks, remove `jupyter` from the list of allowed
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.9.8
rev: v0.9.9
hooks:
# Run the linter.
- id: ruff

View File

@ -2,5 +2,5 @@
name = "ruff-pre-commit"
version = "0.0.0"
dependencies = [
"ruff==0.9.8",
"ruff==0.9.9",
]