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 60457d8 commit 657acd0Copy full SHA for 657acd0
.pre-commit-config.yaml
@@ -14,8 +14,8 @@ repos:
14
- id: end-of-file-fixer
15
- id: mixed-line-ending
16
args: ["-f=lf"]
17
- - repo: https://github.com/charliermarsh/ruff-pre-commit
18
- rev: "v0.8.1"
+ - repo: https://github.com/astral-sh/ruff-pre-commit
+ rev: "v0.11.2"
19
hooks:
20
- id: ruff
21
args: ["--fix"]
ruff.toml
@@ -16,6 +16,10 @@ select = [
'RUF', # Ruff-specific rules
]
+ignore = [
+ 'LOG015', # use pytest logging
+]
22
+
23
[format]
24
quote-style = "single"
25
exclude = [
0 commit comments