Skip to content

Commit

Permalink
Tell pylint to ignore FIXME comments in our code. (#639)
Browse files Browse the repository at this point in the history
We can find them other ways.
  • Loading branch information
bpkroth authored Jan 18, 2024
1 parent 5daaa26 commit acddd45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[MAIN]
# Specify a score threshold to be exceeded before program exits with error.
fail-under=9.8
fail-under=9.9

# Make sure public methods are documented.
# See Also: https://github.com/PyCQA/pydocstyle/issues/309#issuecomment-1426642147
Expand Down Expand Up @@ -39,6 +39,7 @@ max-line-length=132

[MESSAGE CONTROL]
disable=
fixme,
no-else-return,
consider-using-assignment-expr,
deprecated-typing-alias, # disable for now - only deprecated recently
Expand Down

0 comments on commit acddd45

Please sign in to comment.