Skip to content

Commit 32c454b

Browse files
authored
Update pre-commit's ruff id (#19654)
1 parent f6b7418 commit 32c454b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/integrations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Ruff can be used as a [pre-commit](https://pre-commit.com) hook via [`ruff-pre-c
109109
rev: v0.12.7
110110
hooks:
111111
# Run the linter.
112-
- id: ruff
112+
- id: ruff-check
113113
# Run the formatter.
114114
- id: ruff-format
115115
```
@@ -122,7 +122,7 @@ To enable lint fixes, add the `--fix` argument to the lint hook:
122122
rev: v0.12.7
123123
hooks:
124124
# Run the linter.
125-
- id: ruff
125+
- id: ruff-check
126126
args: [ --fix ]
127127
# Run the formatter.
128128
- id: ruff-format
@@ -136,7 +136,7 @@ To avoid running on Jupyter Notebooks, remove `jupyter` from the list of allowed
136136
rev: v0.12.7
137137
hooks:
138138
# Run the linter.
139-
- id: ruff
139+
- id: ruff-check
140140
types_or: [ python, pyi ]
141141
args: [ --fix ]
142142
# Run the formatter.

0 commit comments

Comments
 (0)