Skip to content

Instantly share code, notes, and snippets.

@radupotop
Created April 29, 2022 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radupotop/67aa1c6f0febc1a7bc0a5a4b669e6e04 to your computer and use it in GitHub Desktop.
Save radupotop/67aa1c6f0febc1a7bc0a5a4b669e6e04 to your computer and use it in GitHub Desktop.
pylintrc
[MESSAGES CONTROL]
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time.
#enable=
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
# Standard language features
# I0011 = Locally ignored warning
# W0142 = *args and **kwargs support
# Pointless whinging
# R0201 = Method could be a function
# W0212 = Accessing protected attribute of client class
# W0613 = Unused argument
# W0232 = Class has no __init__ method
# R0903 = Too few public methods
# R0904 = Too many public methods
# C0301 = Line too long
# R0913 = Too many arguments
# C0103 = Invalid name
# R0914 = Too many local variables
# R0923 = Check for Zope-style __implements__ attributes
# Pylint's module import is unreliable
# F0401 = Unable to import module
# W0402 = Use of a deprecated module
# R0801 = Duplicate code
# C0111 = missing-docstring Missing module / class docstring
# C0330 = bad-continuation
# C0326 = bad-whitespace (from black)
# E1103 = maybe-no-member
# C1001 = old-style-class
# False positives
# R0401 = Cyclic import
# Python2
# R0205 = Class inherits from object (useless-object-inheritance)
# Misc
# W0511 = FIXME notes
disable=I0011,W0142,R0201,W0212,W0613,W0232,R0903,R0904,C0301,R0913,C0103,R0914,R0923,F0401,W0402,R0801,C0111,C0330,E1103,C1001,R0401,R0205,W0511,import-outside-toplevel,no-else-continue,C0326
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment