Skip to content

Commit

Permalink
Add .pylintrc to exclude some unnecessary rules
Browse files Browse the repository at this point in the history
  • Loading branch information
yanghua committed Aug 14, 2024
1 parent 00a7eed commit 60eff07
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[MESSAGES CONTROL]
# disable these rules:
# R0913: Too many arguments (used when a function or method has too many arguments).
# W0718: Exception raised is not an instance of BaseException.
# W0223: Method 'method' is abstract in class 'class' but is not overridden.
disable=R0913,W0718,W0223

0 comments on commit 60eff07

Please sign in to comment.