Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: astral-sh/ruff-pre-commit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.6.9
Choose a base ref
...
head repository: astral-sh/ruff-pre-commit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.8.0
Choose a head ref
  • 6 commits
  • 2 files changed
  • 1 contributor

Commits on Oct 17, 2024

  1. Mirror: 0.7.0

    charliermarsh committed Oct 17, 2024
    Copy the full SHA
    8983acb View commit details

Commits on Oct 24, 2024

  1. Mirror: 0.7.1

    charliermarsh committed Oct 24, 2024
    Copy the full SHA
    4edcbde View commit details

Commits on Nov 1, 2024

  1. Mirror: 0.7.2

    charliermarsh committed Nov 1, 2024
    Copy the full SHA
    52c175d View commit details

Commits on Nov 8, 2024

  1. Mirror: 0.7.3

    charliermarsh committed Nov 8, 2024
    Copy the full SHA
    6a19e69 View commit details

Commits on Nov 15, 2024

  1. Mirror: 0.7.4

    charliermarsh committed Nov 15, 2024
    Copy the full SHA
    cafecb2 View commit details

Commits on Nov 22, 2024

  1. Mirror: 0.8.0

    charliermarsh committed Nov 22, 2024
    Copy the full SHA
    0710b94 View commit details
Showing with 7 additions and 7 deletions.
  1. +6 −6 README.md
  2. +1 −1 pyproject.toml
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.6.9.svg)](https://pypi.python.org/pypi/ruff)
[![image](https://img.shields.io/pypi/l/ruff/0.6.9.svg)](https://pypi.python.org/pypi/ruff)
[![image](https://img.shields.io/pypi/pyversions/ruff/0.6.9.svg)](https://pypi.python.org/pypi/ruff)
[![image](https://img.shields.io/pypi/v/ruff/0.8.0.svg)](https://pypi.python.org/pypi/ruff)
[![image](https://img.shields.io/pypi/l/ruff/0.8.0.svg)](https://pypi.python.org/pypi/ruff)
[![image](https://img.shields.io/pypi/pyversions/ruff/0.8.0.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.6.9
rev: v0.8.0
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.6.9
rev: v0.8.0
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.6.9
rev: v0.8.0
hooks:
# Run the linter.
- id: ruff
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
name = "ruff-pre-commit"
version = "0.0.0"
dependencies = [
"ruff==0.6.9",
"ruff==0.8.0",
]

[project.optional-dependencies]