Skip to content

Commit 8cd0a28

Browse files
committed
Merge branch 'develop'
2 parents 8993ff2 + 0d810fc commit 8cd0a28

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

ruff.toml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,31 @@ quote-style = "single"
66
[lint]
77
select = ["ALL"]
88
ignore = [
9-
"ANN002",
10-
"ANN003",
11-
"ANN401",
12-
"D105",
13-
"D107",
14-
"D203",
15-
"D213",
16-
"E402",
17-
"E501",
18-
"FA100",
19-
"FA102",
20-
"FBT001",
21-
"FBT002",
22-
"N805",
23-
"PD901",
24-
"PERF203",
25-
"PGH003",
26-
"PLR0913",
27-
"PTH123",
28-
"S311",
29-
"T201",
30-
"TRY003",
31-
"TD002",
32-
"TD003",
33-
"FIX002",
9+
"ANN002", # Missing type annotation for `*args`
10+
"ANN003", # Missing type annotation for `**kwargs`
11+
"ANN401", # typing.Any is disallowed
12+
"D105", # Missing docstring in magic method
13+
"D107", # Missing docstring in `__init__`
14+
"D203", # 1 blank line required before class docstring
15+
"D213", # Multi-line docstring summary should start at the second line
16+
"E402", # Module level import not at top of file
17+
"E501", # Line too long
18+
"FA100", # Add `from __future__ import annotations`
19+
"FA102", # Missing `from __future__ import annotations`
20+
"FBT001", # Boolean-typed positional argument in function definition
21+
"FBT002", # Boolean default positional argument in function definition
22+
"N805", # First argument of a method should be named `self`
23+
"PD901", # Avoid using the generic variable name `df` for DataFrames
24+
"PERF203", # try-except within a loop incurs performance overhead
25+
"PGH003", # Use specific rule codes when ignoring type issues
26+
"PLR0913", # Too many arguments in function definition
27+
"PTH123", # `open()` should be replaced by `Path.open()`
28+
"S311", # Standard pseudo-random generators are not suitable for security/cryptographic purposes
29+
"T201", # `print` found
30+
"TD002", # Missing author in TODO
31+
"TD003", # Missing issue link for this TODO
32+
"FIX001", # Line contains FIXME, consider resolving the issue
33+
"FIX002", # Line contains TODO, consider resolving the issue
3434
]
3535

3636
[lint.flake8-quotes]

0 commit comments

Comments
 (0)