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 0b56bf7 commit 2d7796dCopy full SHA for 2d7796d
.pre-commit-config.yaml
@@ -2,7 +2,7 @@ repos:
2
- repo: https://github.com/astral-sh/ruff-pre-commit
3
rev: v0.14.2
4
hooks:
5
- - id: ruff
+ - id: ruff-check
6
args: [ --fix ]
7
- repo: https://github.com/PyCQA/autoflake
8
rev: v2.3.1
@@ -12,10 +12,6 @@ repos:
12
- "--in-place"
13
- "--remove-all-unused-imports"
14
- "--remove-unused-variable"
15
- - repo: https://github.com/PyCQA/isort
16
- rev: 7.0.0
17
- hooks:
18
- - id: isort
19
- repo: https://github.com/pre-commit/pre-commit-hooks
20
rev: v6.0.0
21
pyproject.toml
@@ -39,3 +39,8 @@ find = {namespaces = false}
39
40
[tool.ruff]
41
line-length = 100
42
+
43
+[tool.ruff.lint]
44
+extend-select = [
45
+ "I", # isort
46
+]
0 commit comments