We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 583bc0d commit 1139105Copy full SHA for 1139105
.github/workflows/ruff.yml
@@ -6,6 +6,7 @@ jobs:
6
runs-on: ubuntu-latest
7
steps:
8
- uses: actions/checkout@v4
9
- - run: pip install --user ruff==0.1.2
+ # Version should be kept in sync with .pre-commit_config.yaml & also micropython
10
+ - run: pip install --user ruff==0.11.6
11
- run: ruff check --output-format=github .
12
- run: ruff format --diff .
.pre-commit-config.yaml
@@ -8,7 +8,8 @@ repos:
verbose: true
stages: [commit-msg]
- repo: https://github.com/charliermarsh/ruff-pre-commit
- rev: v0.1.2
+ # Version should be kept in sync with .github/workflows/ruff.yml & also micropython
+ rev: v0.11.6
13
hooks:
14
- id: ruff
15
id: ruff-format
0 commit comments