Skip to content

Commit

Permalink
add pylint disable comment
Browse files Browse the repository at this point in the history
  • Loading branch information
anish-mudaraddi committed Sep 24, 2024
1 parent 861a5f2 commit 8d33111
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@ max-line-length=120
# W0511: TODOs they're well....to do later
# R0801: Similar lines - Imports and method signatures will flag this, such as forwarding action args
# C0116: Missing method docstring - Adds too much noise
# R0917: Too many positional arguments - This will always be a problem for the functions in the workflow module
- due to the way stackstorm is designed
# R0913: Too many arguments - same as above

disable=C0114,C0115,E0401,W0511,R0801,C0116,R0917,R0913

0 comments on commit 8d33111

Please sign in to comment.