Skip to content

Commit

Permalink
Merge pull request #244 from censoredplanet/lint-errors
Browse files Browse the repository at this point in the history
ignore more lint errors
  • Loading branch information
ohnorobo authored Jun 23, 2023
2 parents 57c1c0b + d4008ed commit adbd32f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ split_before_expression_after_opening_paren = True
disable=abstract-method, # raises false positives in beam
arguments-differ, # raises false positives in beam
bad-indentation, # covered by yapf
broad-exception-raised, # bad rule
consider-using-with, # better handled by reviewer judgement
duplicate-code, # better handled by reviewer judgement
fixme, # bad rule
Expand All @@ -22,6 +23,7 @@ disable=abstract-method, # raises false positives in beam
logging-fstring-interpolation, # not worth the optimization
no-member, # raises false positives
no-name-in-module, # raises false positives
superfluous-parens, # doesn't work well with beam
too-many-arguments, # better handled by reviewer judgement
too-many-locals, # better handled by reviewer judgement
too-few-public-methods, # bad rule
Expand Down

0 comments on commit adbd32f

Please sign in to comment.