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 fef6c9b commit 510eb4eCopy full SHA for 510eb4e
.pre-commit-config.yaml
@@ -1,6 +1,6 @@
1
repos:
2
- repo: https://github.com/astral-sh/ruff-pre-commit
3
- rev: v0.1.7
+ rev: v0.2.0
4
hooks:
5
- id: ruff
6
name: Run Ruff on Lib/test/
Lib/test/.ruff.toml
@@ -1,7 +1,4 @@
fix = true
-select = [
- "F811", # Redefinition of unused variable (useful for finding test methods with the same name)
-]
extend-exclude = [
# Excluded (these aren't actually executed, they're just "data files")
7
"tokenizedata/*.py",
@@ -22,3 +19,8 @@ extend-exclude = [
22
19
"test_yield_from.py",
23
20
"time_hashlib.py",
24
21
]
+
+[lint]
+select = [
25
+ "F811", # Redefinition of unused variable (useful for finding test methods with the same name)
26
+]
0 commit comments