.pylintrc 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  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. # Deprecated. It was used to include message's id in output. Use --msg-template
  18. # instead.
  19. include-ids=no
  20. # Deprecated. It was used to include symbolic ids of messages in output. Use
  21. # --msg-template instead.
  22. symbols=no
  23. # Use multiple processes to speed up Pylint.
  24. jobs=1
  25. # Allow loading of arbitrary C extensions. Extensions are imported into the
  26. # active Python interpreter and may run arbitrary code.
  27. unsafe-load-any-extension=no
  28. # A comma-separated list of package or module names from where C extensions may
  29. # be loaded. Extensions are loading into the active Python interpreter and may
  30. # run arbitrary code
  31. extension-pkg-whitelist=
  32. # Allow optimization of some AST trees. This will activate a peephole AST
  33. # optimizer, which will apply various small optimizations. For instance, it can
  34. # be used to obtain the result of joining multiple strings with the addition
  35. # operator. Joining a lot of strings can lead to a maximum recursion error in
  36. # Pylint and this flag can prevent that. It has one side effect, the resulting
  37. # AST will be different than the one from reality.
  38. optimize-ast=no
  39. [MESSAGES CONTROL]
  40. # Only show warnings with the listed confidence levels. Leave empty to show
  41. # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED
  42. confidence=
  43. # Enable the message, report, category or checker with the given id(s). You can
  44. # either give multiple identifier separated by comma (,) or put this option
  45. # multiple time. See also the "--disable" option for examples.
  46. #enable=
  47. # Disable the message, report, category or checker with the given id(s). You
  48. # can either give multiple identifiers separated by comma (,) or put this
  49. # option multiple times (only on the command line, not in the configuration
  50. # file where it should appear only once).You can also use "--disable=all" to
  51. # disable everything first and then reenable specific checks. For example, if
  52. # you want to run only the similarities checker, you can use "--disable=all
  53. # --enable=similarities". If you want to run only the classes checker, but have
  54. # no Warning level messages displayed, use"--disable=all --enable=classes
  55. # --disable=W"
  56. disable=E1608,W1627,E1601,E1603,E1602,E1605,E1604,E1607,E1606,W1621,W1620,W1623,W1622,W1625,W1624,W1609,W1608,W1607,W1606,W1605,W1604,W1603,W1602,W1601,W1639,W1640,I0021,W1638,I0020,W1618,W1619,W1630,W1626,W1637,W1634,W1635,W1610,W1611,W1612,W1613,W1614,W1615,W1616,W1617,W1632,W1633,W0704,W1628,W1629,W1636
  57. [REPORTS]
  58. # Set the output format. Available formats are text, parseable, colorized, msvs
  59. # (visual studio) and html. You can also give a reporter class, eg
  60. # mypackage.mymodule.MyReporterClass.
  61. output-format=text
  62. # Put messages in a separate file for each module / package specified on the
  63. # command line instead of printing them on stdout. Reports (if any) will be
  64. # written in a file name "pylint_global.[txt|html]".
  65. files-output=no
  66. # Tells whether to display a full report or only the messages
  67. reports=yes
  68. # Python expression which should return a note less than 10 (10 is the highest
  69. # note). You have access to the variables errors warning, statement which
  70. # respectively contain the number of errors / warnings messages and the total
  71. # number of statements analyzed. This is used by the global evaluation report
  72. # (RP0004).
  73. evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
  74. # Add a comment according to your evaluation note. This is used by the global
  75. # evaluation report (RP0004).
  76. comment=no
  77. # Template used to display messages. This is a python new-style format string
  78. # used to format the message information. See doc for all details
  79. #msg-template=
  80. [BASIC]
  81. # Required attributes for module, separated by a comma
  82. required-attributes=
  83. # List of builtins function names that should not be used, separated by a comma
  84. bad-functions=map,filter,input
  85. # Good variable names which should always be accepted, separated by a comma
  86. good-names=i,j,k,ex,Run,_
  87. # Bad variable names which should always be refused, separated by a comma
  88. bad-names=foo,bar,baz,toto,tutu,tata
  89. # Colon-delimited sets of names that determine each other's naming style when
  90. # the name regexes allow several styles.
  91. name-group=
  92. # Include a hint for the correct naming format with invalid-name
  93. include-naming-hint=no
  94. # Regular expression matching correct function names
  95. function-rgx=[a-z][A-Za-z0-9]{1,30}$
  96. # Naming hint for function names
  97. function-name-hint=[a-z_][a-z0-9_]{2,30}$
  98. # Regular expression matching correct variable names
  99. variable-rgx=[a-z][A-Za-z0-9]{1,30}$
  100. # Naming hint for variable names
  101. variable-name-hint=[a-z_][a-z0-9_]{2,30}$
  102. # Regular expression matching correct constant names
  103. const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
  104. # Naming hint for constant names
  105. const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
  106. # Regular expression matching correct attribute names
  107. attr-rgx=[a-z_][a-z0-9_]{2,30}$
  108. # Naming hint for attribute names
  109. attr-name-hint=[a-z_][a-z0-9_]{2,30}$
  110. # Regular expression matching correct argument names
  111. argument-rgx=[a-z][A-Za-z0-9]{1,30}$
  112. # Naming hint for argument names
  113. argument-name-hint=[a-z_][a-z0-9_]{2,30}$
  114. # Regular expression matching correct class attribute names
  115. class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
  116. # Naming hint for class attribute names
  117. class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
  118. # Regular expression matching correct inline iteration names
  119. inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
  120. # Naming hint for inline iteration names
  121. inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
  122. # Regular expression matching correct class names
  123. class-rgx=[A-Z_][a-zA-Z0-9]+$
  124. # Naming hint for class names
  125. class-name-hint=[A-Z_][a-zA-Z0-9]+$
  126. # Regular expression matching correct module names
  127. module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
  128. # Naming hint for module names
  129. module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
  130. # Regular expression matching correct method names
  131. method-rgx=[a-z_][a-z0-9_]{2,30}$
  132. # Naming hint for method names
  133. method-name-hint=[a-z_][a-z0-9_]{2,30}$
  134. # Regular expression which should only match function or class names that do
  135. # not require a docstring.
  136. no-docstring-rgx=__.*__
  137. # Minimum line length for functions/classes that require docstrings, shorter
  138. # ones are exempt.
  139. docstring-min-length=-1
  140. [FORMAT]
  141. # Maximum number of characters on a single line.
  142. max-line-length=100
  143. # Regexp for a line that is allowed to be longer than the limit.
  144. ignore-long-lines=^\s*(# )?<?https?://\S+>?$
  145. # Allow the body of an if to be on the same line as the test if there is no
  146. # else.
  147. single-line-if-stmt=no
  148. # List of optional constructs for which whitespace checking is disabled
  149. no-space-check=trailing-comma,dict-separator
  150. # Maximum number of lines in a module
  151. max-module-lines=1000
  152. # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
  153. # tab).
  154. indent-string=' '
  155. # Number of spaces of indent required inside a hanging or continued line.
  156. indent-after-paren=4
  157. # Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
  158. expected-line-ending-format=
  159. [LOGGING]
  160. # Logging modules to check that the string format arguments are in logging
  161. # function parameter format
  162. logging-modules=logging
  163. [MISCELLANEOUS]
  164. # List of note tags to take in consideration, separated by a comma.
  165. notes=FIXME,XXX,TODO
  166. [SIMILARITIES]
  167. # Minimum lines number of a similarity.
  168. min-similarity-lines=4
  169. # Ignore comments when computing similarities.
  170. ignore-comments=yes
  171. # Ignore docstrings when computing similarities.
  172. ignore-docstrings=yes
  173. # Ignore imports when computing similarities.
  174. ignore-imports=no
  175. [SPELLING]
  176. # Spelling dictionary name. Available dictionaries: none. To make it working
  177. # install python-enchant package.
  178. spelling-dict=
  179. # List of comma separated words that should not be checked.
  180. spelling-ignore-words=
  181. # A path to a file that contains private dictionary; one word per line.
  182. spelling-private-dict-file=
  183. # Tells whether to store unknown words to indicated private dictionary in
  184. # --spelling-private-dict-file option instead of raising a message.
  185. spelling-store-unknown-words=no
  186. [TYPECHECK]
  187. # Tells whether missing members accessed in mixin class should be ignored. A
  188. # mixin class is detected if its name ends with "mixin" (case insensitive).
  189. ignore-mixin-members=yes
  190. # List of module names for which member attributes should not be checked
  191. # (useful for modules/projects where namespaces are manipulated during runtime
  192. # and thus existing member attributes cannot be deduced by static analysis
  193. ignored-modules=
  194. # List of classes names for which member attributes should not be checked
  195. # (useful for classes with attributes dynamically set).
  196. ignored-classes=SQLObject
  197. # When zope mode is activated, add a predefined set of Zope acquired attributes
  198. # to generated-members.
  199. zope=no
  200. # List of members which are set dynamically and missed by pylint inference
  201. # system, and so shouldn't trigger E0201 when accessed. Python regular
  202. # expressions are accepted.
  203. generated-members=REQUEST,acl_users,aq_parent
  204. [VARIABLES]
  205. # Tells whether we should check for unused import in __init__ files.
  206. init-import=no
  207. # A regular expression matching the name of dummy variables (i.e. expectedly
  208. # not used).
  209. dummy-variables-rgx=_$|dummy
  210. # List of additional names supposed to be defined in builtins. Remember that
  211. # you should avoid to define new builtins when possible.
  212. additional-builtins=
  213. # List of strings which can identify a callback function by name. A callback
  214. # name must start or end with one of those strings.
  215. callbacks=cb_,_cb
  216. [CLASSES]
  217. # List of interface methods to ignore, separated by a comma. This is used for
  218. # instance to not check methods defines in Zope's Interface base class.
  219. ignore-iface-methods=isImplementedBy,deferred,extends,names,namesAndDescriptions,queryDescriptionFor,getBases,getDescriptionFor,getDoc,getName,getTaggedValue,getTaggedValueTags,isEqualOrExtendedBy,setTaggedValue,isImplementedByInstancesOf,adaptWith,is_implemented_by
  220. # List of method names used to declare (i.e. assign) instance attributes.
  221. defining-attr-methods=__init__,__new__,setUp
  222. # List of valid names for the first argument in a class method.
  223. valid-classmethod-first-arg=cls
  224. # List of valid names for the first argument in a metaclass class method.
  225. valid-metaclass-classmethod-first-arg=mcs
  226. # List of member names, which should be excluded from the protected access
  227. # warning.
  228. exclude-protected=_asdict,_fields,_replace,_source,_make
  229. [DESIGN]
  230. # Maximum number of arguments for function / method
  231. max-args=5
  232. # Argument names that match this expression will be ignored. Default to name
  233. # with leading underscore
  234. ignored-argument-names=_.*
  235. # Maximum number of locals for function / method body
  236. max-locals=15
  237. # Maximum number of return / yield for function / method body
  238. max-returns=6
  239. # Maximum number of branch for function / method body
  240. max-branches=12
  241. # Maximum number of statements in function / method body
  242. max-statements=50
  243. # Maximum number of parents for a class (see R0901).
  244. max-parents=7
  245. # Maximum number of attributes for a class (see R0902).
  246. max-attributes=7
  247. # Minimum number of public methods for a class (see R0903).
  248. min-public-methods=2
  249. # Maximum number of public methods for a class (see R0904).
  250. max-public-methods=20
  251. [IMPORTS]
  252. # Deprecated modules which should not be used, separated by a comma
  253. deprecated-modules=regsub,TERMIOS,Bastion,rexec
  254. # Create a graph of every (i.e. internal and external) dependencies in the
  255. # given file (report RP0402 must not be disabled)
  256. import-graph=
  257. # Create a graph of external dependencies in the given file (report RP0402 must
  258. # not be disabled)
  259. ext-import-graph=
  260. # Create a graph of internal dependencies in the given file (report RP0402 must
  261. # not be disabled)
  262. int-import-graph=
  263. [EXCEPTIONS]
  264. # Exceptions that will emit a warning when being caught. Defaults to
  265. # "Exception"
  266. overgeneral-exceptions=Exception