-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruff.toml
37 lines (34 loc) · 1.62 KB
/
ruff.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
extend = "ruff-base.toml"
# These are files to exclude for this project.
extend-exclude = [
"**/*.ipynb", # commonly not ruff-compliant
]
# These are rules that commonly cause many ruff warnings. Code will be improved by
# incrementally fixing code to adhere to these rules, but for practical purposes they
# can be ignored by uncommenting each one. You can also add to this list as needed.
lint.extend-ignore = [
"D205", # 1 blank line required between summary line and description
"B905", # `zip()` without an explicit `strict=` parameter
"B904", # Within an `except` clause, raise exceptions with `raise ... from err`
# "PLC1901", # compare-to-empty-string
# "PLR0911", # Too many returns
"PLR0912", # Too many branches
"PLR0915", # Too many statements
# "PGH004", # Use specific rule codes when using `noqa`
"C401", # Unnecessary generator (rewrite as a `set` comprehension)
"C402", # Unnecessary generator (rewrite as a dict comprehension)
"C405", # Unnecessary `list` literal (rewrite as a `set` literal)
"C408", # Unnecessary `dict` call (rewrite as a literal)
"C416", # Unnecessary `dict` comprehension (rewrite using `dict()`)
# "G010", # warn is deprecated in favor of warning
# "PYI056", # Calling `.append()` on `__all__` may not be supported by all type checkers
]
[lint.extend-per-file-ignores]
"**/tests/*.py" = [
"TID252", # Prefer absolute imports over relative imports from parent modules
"C408", # Unnecessary `dict` call (rewrite as a literal)
"B905", # `zip()` without an explicit `strict=` parameter
]
"core.py" = [
"PLR1704", # Redefining argument with the local name
]