We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d17d71 commit c0fd78bCopy full SHA for c0fd78b
.github/workflows/lint.yml renamed to .github/workflows/pre-commit.yml
@@ -6,7 +6,7 @@ permissions: {}
6
7
jobs:
8
lint:
9
- name: Check code with ruff
+ name: Run pre-commit checks
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v5
.pre-commit-config.yaml
@@ -6,6 +6,9 @@ repos:
- id: ruff-check
name: Run Ruff (lint)
args: [--exit-non-zero-on-fix]
+ - id: ruff-format
+ name: Run Ruff (format)
+ args: [--exit-non-zero-on-fix]
13
- repo: https://github.com/tox-dev/pyproject-fmt
14
rev: v2.6.0
0 commit comments