Skip to content

Commit d96bffa

Browse files
committed
more lint updates
1 parent 6c541c5 commit d96bffa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.cfg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ max-complexity = 23
1010
# D300: triple double quotes - style preference
1111
# F403: star imports used - intentional for convenience
1212
# E721: type comparisons - many are intentional (exact type checks in __eq__, etc.)
13-
ignore = F405, D401, D300, F403, E721
13+
# W504: line break after binary operator - style preference (PEP 8 allows both)
14+
# E241: multiple spaces after comma/colon - minor spacing issues
15+
ignore = F405, D401, D300, F403, E721, W504, E241
1416

1517
[pep257]
1618
ignore = D203

0 commit comments

Comments
 (0)