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 92434f2 commit 05acfd7Copy full SHA for 05acfd7
.pre-commit-config.yaml
@@ -27,7 +27,7 @@ repos:
27
- -b main
28
- id: trailing-whitespace
29
- repo: https://github.com/astral-sh/ruff-pre-commit
30
- rev: v0.8.6
+ rev: v0.9.6
31
hooks:
32
- id: ruff
33
args: [--fix, --exit-non-zero-on-fix]
pyproject.toml
@@ -34,8 +34,10 @@ yamllint = "^1.35.1"
34
pytest = "^8.3.4"
35
36
[tool.ruff]
37
-fixable = ["ALL"]
38
line-length = 120
+
39
+[tool.ruff.lint]
40
+fixable = ["ALL"]
41
select = [
42
"D", # pydocstyle
43
"E", # pycodestyle
@@ -46,5 +48,5 @@ select = [
46
48
"UP", # pyupgrade
47
49
]
50
-[tool.ruff.pydocstyle]
51
+[tool.ruff.lint.pydocstyle]
52
convention = "google"
0 commit comments