-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruff.toml
More file actions
31 lines (29 loc) · 1.5 KB
/
ruff.toml
File metadata and controls
31 lines (29 loc) · 1.5 KB
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
extend = "ruff-base.toml"
# These are files to exclude for this project.
extend-exclude = [
# "**/*.ipynb", # commonly not ruff-compliant
"mica/archive/tests/validate_dark_coords.ipynb",
]
# 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 = [
"B905", # `zip()` without an explicit `strict=` parameter
"B009", # Do not call `getattr` with a constant attribute value.
# "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)
"C404", # Unnecessary `list` comprehension (rewrite as a `dict` comprehension)
"C405", # Unnecessary `list` literal (rewrite as a `set` literal)
"C408", # Unnecessary `dict` call (rewrite as a literal)
"C419", # Unnecessary list comprehension
# "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
"PIE808", # Unecessary `start` argument in range
"PLW0603", # Using the global statement to update `logger` is discouraged
]