pylint.cfg 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. [MASTER]
  2. # Specify a configuration file.
  3. #rcfile=
  4. # Python code to execute, usually for sys.path manipulation such as
  5. # pygtk.require().
  6. #init-hook=
  7. # Profiled execution.
  8. profile=no
  9. # Add files or directories to the blacklist. They should be base names, not
  10. # paths.
  11. ignore=CVS
  12. # Pickle collected data for later comparisons.
  13. persistent=yes
  14. # List of plugins (as comma separated values of python modules names) to load,
  15. # usually to register additional checkers.
  16. load-plugins=
  17. [MESSAGES CONTROL]
  18. # Enable the message, report, category or checker with the given id(s). You can
  19. # either give multiple identifier separated by comma (,) or put this option
  20. # multiple time. See also the "--disable" option for examples.
  21. #enable=
  22. # Disable the message, report, category or checker with the given id(s). You
  23. # can either give multiple identifiers separated by comma (,) or put this
  24. # option multiple times (only on the command line, not in the configuration
  25. # file where it should appear only once).You can also use "--disable=all" to
  26. # disable everything first and then reenable specific checks. For example, if
  27. # you want to run only the similarities checker, you can use "--disable=all
  28. # --enable=similarities". If you want to run only the classes checker, but have
  29. # no Warning level messages displayed, use"--disable=all --enable=classes
  30. # --disable=W"
  31. disable=missing-docstring
  32. [REPORTS]
  33. # Set the output format. Available formats are text, parseable, colorized, msvs
  34. # (visual studio) and html. You can also give a reporter class, eg
  35. # mypackage.mymodule.MyReporterClass.
  36. output-format=text
  37. # Put messages in a separate file for each module / package specified on the
  38. # command line instead of printing them on stdout. Reports (if any) will be
  39. # written in a file name "pylint_global.[txt|html]".
  40. files-output=no
  41. # Tells whether to display a full report or only the messages
  42. reports=yes
  43. # Python expression which should return a note less than 10 (10 is the highest
  44. # note). You have access to the variables errors warning, statement which
  45. # respectively contain the number of errors / warnings messages and the total
  46. # number of statements analyzed. This is used by the global evaluation report
  47. # (RP0004).
  48. evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
  49. # Add a comment according to your evaluation note. This is used by the global
  50. # evaluation report (RP0004).
  51. comment=no
  52. # Template used to display messages. This is a python new-style format string
  53. # used to format the message information. See doc for all details
  54. #msg-template=
  55. [TYPECHECK]
  56. # Tells whether missing members accessed in mixin class should be ignored. A
  57. # mixin class is detected if its name ends with "mixin" (case insensitive).
  58. ignore-mixin-members=yes
  59. # List of classes names for which member attributes should not be checked
  60. # (useful for classes with attributes dynamically set).
  61. ignored-classes=SQLObject
  62. # When zope mode is activated, add a predefined set of Zope acquired attributes
  63. # to generated-members.
  64. zope=no
  65. # List of members which are set dynamically and missed by pylint inference
  66. # system, and so shouldn't trigger E0201 when accessed. Python regular
  67. # expressions are accepted.
  68. generated-members=REQUEST,acl_users,aq_parent
  69. [MISCELLANEOUS]
  70. # List of note tags to take in consideration, separated by a comma.
  71. notes=FIXME,XXX,TODO
  72. [SIMILARITIES]
  73. # Minimum lines number of a similarity.
  74. min-similarity-lines=4
  75. # Ignore comments when computing similarities.
  76. ignore-comments=yes
  77. # Ignore docstrings when computing similarities.
  78. ignore-docstrings=yes
  79. # Ignore imports when computing similarities.
  80. ignore-imports=no
  81. [VARIABLES]
  82. # Tells whether we should check for unused import in __init__ files.
  83. init-import=no
  84. # A regular expression matching the beginning of the name of dummy variables
  85. # (i.e. not used).
  86. dummy-variables-rgx=_$|dummy
  87. # List of additional names supposed to be defined in builtins. Remember that
  88. # you should avoid to define new builtins when possible.
  89. additional-builtins=
  90. [BASIC]
  91. # Required attributes for module, separated by a comma
  92. required-attributes=
  93. # List of builtins function names that should not be used, separated by a comma
  94. bad-functions=map,filter,apply,input
  95. # Regular expression which should only match correct module names
  96. module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
  97. # Regular expression which should only match correct module level names
  98. const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
  99. # Regular expression which should only match correct class names
  100. class-rgx=[A-Z_][a-zA-Z0-9]+$
  101. # Regular expression which should only match correct function names
  102. function-rgx=[a-z_][a-z0-9_]{2,30}$
  103. # Regular expression which should only match correct method names
  104. method-rgx=[a-z_][a-z0-9_]{2,30}$
  105. # Regular expression which should only match correct instance attribute names
  106. attr-rgx=[a-z_][a-z0-9_]{2,30}$
  107. # Regular expression which should only match correct argument names
  108. argument-rgx=[a-z_][a-z0-9_]{2,30}$
  109. # Regular expression which should only match correct variable names
  110. variable-rgx=[a-z_][a-z0-9_]{2,30}$
  111. # Regular expression which should only match correct attribute names in class
  112. # bodies
  113. class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
  114. # Regular expression which should only match correct list comprehension /
  115. # generator expression variable names
  116. inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
  117. # Good variable names which should always be accepted, separated by a comma
  118. good-names=i,j,k,ex,Run,_
  119. # Bad variable names which should always be refused, separated by a comma
  120. bad-names=foo,bar,baz,toto,tutu,tata
  121. # Regular expression which should only match function or class names that do
  122. # not require a docstring.
  123. no-docstring-rgx=__.*__
  124. # Minimum line length for functions/classes that require docstrings, shorter
  125. # ones are exempt.
  126. docstring-min-length=-1
  127. [FORMAT]
  128. # Maximum number of characters on a single line.
  129. max-line-length=80
  130. # Regexp for a line that is allowed to be longer than the limit.
  131. ignore-long-lines=^\s*(# )?<?https?://\S+>?$
  132. # Allow the body of an if to be on the same line as the test if there is no
  133. # else.
  134. single-line-if-stmt=no
  135. # List of optional constructs for which whitespace checking is disabled
  136. no-space-check=trailing-comma,dict-separator
  137. # Maximum number of lines in a module
  138. max-module-lines=1000
  139. # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
  140. # tab).
  141. indent-string=' '
  142. [DESIGN]
  143. # Maximum number of arguments for function / method
  144. max-args=5
  145. # Argument names that match this expression will be ignored. Default to name
  146. # with leading underscore
  147. ignored-argument-names=_.*
  148. # Maximum number of locals for function / method body
  149. max-locals=15
  150. # Maximum number of return / yield for function / method body
  151. max-returns=6
  152. # Maximum number of branch for function / method body
  153. max-branches=12
  154. # Maximum number of statements in function / method body
  155. max-statements=50
  156. # Maximum number of parents for a class (see R0901).
  157. max-parents=7
  158. # Maximum number of attributes for a class (see R0902).
  159. max-attributes=7
  160. # Minimum number of public methods for a class (see R0903).
  161. min-public-methods=2
  162. # Maximum number of public methods for a class (see R0904).
  163. max-public-methods=20
  164. [IMPORTS]
  165. # Deprecated modules which should not be used, separated by a comma
  166. deprecated-modules=regsub,TERMIOS,Bastion,rexec
  167. # Create a graph of every (i.e. internal and external) dependencies in the
  168. # given file (report RP0402 must not be disabled)
  169. import-graph=
  170. # Create a graph of external dependencies in the given file (report RP0402 must
  171. # not be disabled)
  172. ext-import-graph=
  173. # Create a graph of internal dependencies in the given file (report RP0402 must
  174. # not be disabled)
  175. int-import-graph=
  176. [CLASSES]
  177. # List of interface methods to ignore, separated by a comma. This is used for
  178. # instance to not check methods defines in Zope's Interface base class.
  179. ignore-iface-methods=isImplementedBy,deferred,extends,names,namesAndDescriptions,queryDescriptionFor,getBases,getDescriptionFor,getDoc,getName,getTaggedValue,getTaggedValueTags,isEqualOrExtendedBy,setTaggedValue,isImplementedByInstancesOf,adaptWith,is_implemented_by
  180. # List of method names used to declare (i.e. assign) instance attributes.
  181. defining-attr-methods=__init__,__new__,setUp
  182. # List of valid names for the first argument in a class method.
  183. valid-classmethod-first-arg=cls
  184. # List of valid names for the first argument in a metaclass class method.
  185. valid-metaclass-classmethod-first-arg=mcs
  186. [EXCEPTIONS]
  187. # Exceptions that will emit a warning when being caught. Defaults to
  188. # "Exception"
  189. overgeneral-exceptions=Exception