.pylintrc 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  1. [MASTER]
  2. # A comma-separated list of package or module names from where C extensions may
  3. # be loaded. Extensions are loading into the active Python interpreter and may
  4. # run arbitrary code
  5. extension-pkg-whitelist=
  6. # Add files or directories to the blacklist. They should be base names, not
  7. # paths.
  8. ignore=CVS
  9. # Add files or directories matching the regex patterns to the blacklist. The
  10. # regex matches against base names, not paths.
  11. ignore-patterns=
  12. # Python code to execute, usually for sys.path manipulation such as
  13. # pygtk.require().
  14. #init-hook=
  15. # Use multiple processes to speed up Pylint.
  16. jobs=1
  17. # List of plugins (as comma separated values of python modules names) to load,
  18. # usually to register additional checkers.
  19. load-plugins=
  20. # Pickle collected data for later comparisons.
  21. persistent=yes
  22. # Specify a configuration file.
  23. #rcfile=
  24. # Allow loading of arbitrary C extensions. Extensions are imported into the
  25. # active Python interpreter and may run arbitrary code.
  26. unsafe-load-any-extension=no
  27. [MESSAGES CONTROL]
  28. # Only show warnings with the listed confidence levels. Leave empty to show
  29. # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED
  30. confidence=
  31. # Disable the message, report, category or checker with the given id(s). You
  32. # can either give multiple identifiers separated by comma (,) or put this
  33. # option multiple times (only on the command line, not in the configuration
  34. # file where it should appear only once).You can also use "--disable=all" to
  35. # disable everything first and then reenable specific checks. For example, if
  36. # you want to run only the similarities checker, you can use "--disable=all
  37. # --enable=similarities". If you want to run only the classes checker, but have
  38. # no Warning level messages displayed, use"--disable=all --enable=classes
  39. # --disable=W"
  40. disable=blacklisted-name,invalid-name,missing-docstring,empty-docstring,unneeded-not,singleton-comparison,misplaced-comparison-constant,unidiomatic-typecheck,consider-using-enumerate,consider-iterating-dictionary,bad-classmethod-argument,bad-mcs-method-argument,bad-mcs-classmethod-argument,single-string-used-for-slots,line-too-long,too-many-lines,trailing-whitespace,missing-final-newline,trailing-newlines,multiple-statements,superfluous-parens,bad-whitespace,mixed-line-endings,unexpected-line-ending-format,bad-continuation,wrong-spelling-in-comment,wrong-spelling-in-docstring,invalid-characters-in-docstring,multiple-imports,wrong-import-order,ungrouped-imports,wrong-import-position,old-style-class,len-as-condition,fatal,astroid-error,parse-error,method-check-failed,raw-checker-failed,bad-inline-option,locally-disabled,locally-enabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma
  41. # Enable the message, report, category or checker with the given id(s). You can
  42. # either give multiple identifier separated by comma (,) or put this option
  43. # multiple time (only on the command line, not in the configuration file where
  44. # it should appear only once). See also the "--disable" option for examples.
  45. enable=syntax-error,unrecognized-inline-option,bad-option-value,init-is-generator,return-in-init,function-redefined,not-in-loop,return-outside-function,yield-outside-function,return-arg-in-generator,nonexistent-operator,duplicate-argument-name,abstract-class-instantiated,bad-reversed-sequence,too-many-star-expressions,invalid-star-assignment-target,star-needs-assignment-target,nonlocal-and-global,continue-in-finally,nonlocal-without-binding,method-hidden,access-member-before-definition,no-method-argument,no-self-argument,invalid-slots-object,assigning-non-slot,invalid-slots,inherit-non-class,inconsistent-mro,duplicate-bases,non-iterator-returned,unexpected-special-method-signature,invalid-length-returned,import-error,relative-beyond-top-level,used-before-assignment,undefined-variable,undefined-all-variable,invalid-all-object,no-name-in-module,unbalanced-tuple-unpacking,unpacking-non-sequence,bad-except-order,raising-bad-type,bad-exception-context,misplaced-bare-raise,raising-non-exception,notimplemented-raised,catching-non-exception,slots-on-old-class,super-on-old-class,bad-super-call,missing-super-argument,no-member,not-callable,assignment-from-no-return,no-value-for-parameter,too-many-function-args,unexpected-keyword-arg,redundant-keyword-arg,missing-kwoa,invalid-sequence-index,invalid-slice-index,assignment-from-none,not-context-manager,invalid-unary-operand-type,unsupported-binary-operation,repeated-keyword,not-an-iterable,not-a-mapping,unsupported-membership-test,unsubscriptable-object,unsupported-assignment-operation,unsupported-delete-operation,invalid-metaclass,logging-unsupported-format,logging-format-truncated,logging-too-many-args,logging-too-few-args,bad-format-character,truncated-format-string,mixed-format-string,format-needs-mapping,missing-format-string-key,too-many-format-args,too-few-format-args,bad-str-strip-call,print-statement,parameter-unpacking,unpacking-in-except,old-raise-syntax,backtick,long-suffix,old-ne-operator,old-octal-literal,import-star-module-level,yield-inside-async-function,not-async-context-manager,literal-comparison,no-self-use,no-classmethod-decorator,no-staticmethod-decorator,cyclic-import,duplicate-code,too-many-ancestors,too-many-instance-attributes,too-few-public-methods,too-many-public-methods,too-many-return-statements,too-many-branches,too-many-arguments,too-many-locals,too-many-statements,too-many-boolean-expressions,consider-merging-isinstance,too-many-nested-blocks,simplifiable-if-statement,redefined-argument-from-local,no-else-return,consider-using-ternary,trailing-comma-tuple,unreachable,dangerous-default-value,pointless-statement,pointless-string-statement,expression-not-assigned,unnecessary-pass,unnecessary-lambda,duplicate-key,deprecated-lambda,useless-else-on-loop,exec-used,eval-used,confusing-with-statement,using-constant-test,lost-exception,assert-on-tuple,attribute-defined-outside-init,bad-staticmethod-argument,protected-access,arguments-differ,signature-differs,abstract-method,super-init-not-called,no-init,non-parent-init-called,useless-super-delegation,unnecessary-semicolon,bad-indentation,mixed-indentation,lowercase-l-suffix,wildcard-import,deprecated-module,relative-import,reimported,import-self,misplaced-future,fixme,invalid-encoded-data,global-variable-undefined,global-variable-not-assigned,global-statement,global-at-module-level,unused-import,unused-variable,unused-argument,unused-wildcard-import,redefined-outer-name,redefined-builtin,redefine-in-handler,undefined-loop-variable,cell-var-from-loop,bare-except,broad-except,duplicate-except,nonstandard-exception,binary-op-exception,property-on-old-class,logging-not-lazy,logging-format-interpolation,bad-format-string-key,unused-format-string-key,bad-format-string,missing-format-argument-key,unused-format-string-argument,format-combined-specification,missing-format-attribute,invalid-format-index,anomalous-backslash-in-string,anomalous-unicode-escape-in-string,bad-open-mode,boolean-datetime,redundant-unittest-assert,deprecated-method,apply-builtin,basestring-builtin,buffer-builtin,cmp-builtin,coerce-builtin,execfile-builtin,file-builtin,long-builtin,raw_input-builtin,reduce-builtin,standarderror-builtin,unicode-builtin,xrange-builtin,coerce-method,delslice-method,getslice-method,setslice-method,no-absolute-import,old-division,dict-iter-method,dict-view-method,next-method-called,metaclass-assignment,indexing-exception,raising-string,reload-builtin,oct-method,hex-method,nonzero-method,cmp-method,input-builtin,round-builtin,intern-builtin,unichr-builtin,map-builtin-not-iterating,zip-builtin-not-iterating,range-builtin-not-iterating,filter-builtin-not-iterating,using-cmp-argument,eq-without-hash,div-method,idiv-method,rdiv-method,exception-message-attribute,invalid-str-codec,sys-max-int,bad-python3-import,deprecated-string-function,deprecated-str-translate-call
  46. [REPORTS]
  47. # Python expression which should return a note less than 10 (10 is the highest
  48. # note). You have access to the variables errors warning, statement which
  49. # respectively contain the number of errors / warnings messages and the total
  50. # number of statements analyzed. This is used by the global evaluation report
  51. # (RP0004).
  52. evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
  53. # Template used to display messages. This is a python new-style format string
  54. # used to format the message information. See doc for all details
  55. #msg-template=
  56. # Set the output format. Available formats are text, parseable, colorized, json
  57. # and msvs (visual studio).You can also give a reporter class, eg
  58. # mypackage.mymodule.MyReporterClass.
  59. output-format=text
  60. # Tells whether to display a full report or only the messages
  61. reports=no
  62. # Activate the evaluation score.
  63. score=yes
  64. [REFACTORING]
  65. # Maximum number of nested blocks for function / method body
  66. max-nested-blocks=5
  67. [LOGGING]
  68. # Logging modules to check that the string format arguments are in logging
  69. # function parameter format
  70. logging-modules=logging
  71. [BASIC]
  72. # Naming hint for argument names
  73. argument-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  74. # Regular expression matching correct argument names
  75. argument-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  76. # Naming hint for attribute names
  77. attr-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  78. # Regular expression matching correct attribute names
  79. attr-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  80. # Bad variable names which should always be refused, separated by a comma
  81. bad-names=foo,bar,baz,toto,tutu,tata
  82. # Naming hint for class attribute names
  83. class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
  84. # Regular expression matching correct class attribute names
  85. class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
  86. # Naming hint for class names
  87. class-name-hint=[A-Z_][a-zA-Z0-9]+$
  88. # Regular expression matching correct class names
  89. class-rgx=[A-Z_][a-zA-Z0-9]+$
  90. # Naming hint for constant names
  91. const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
  92. # Regular expression matching correct constant names
  93. const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
  94. # Minimum line length for functions/classes that require docstrings, shorter
  95. # ones are exempt.
  96. docstring-min-length=-1
  97. # Naming hint for function names
  98. function-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  99. # Regular expression matching correct function names
  100. function-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  101. # Good variable names which should always be accepted, separated by a comma
  102. good-names=i,j,k,ex,Run,_
  103. # Include a hint for the correct naming format with invalid-name
  104. include-naming-hint=no
  105. # Naming hint for inline iteration names
  106. inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
  107. # Regular expression matching correct inline iteration names
  108. inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
  109. # Naming hint for method names
  110. method-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  111. # Regular expression matching correct method names
  112. method-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  113. # Naming hint for module names
  114. module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
  115. # Regular expression matching correct module names
  116. module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
  117. # Colon-delimited sets of names that determine each other's naming style when
  118. # the name regexes allow several styles.
  119. name-group=
  120. # Regular expression which should only match function or class names that do
  121. # not require a docstring.
  122. no-docstring-rgx=^_
  123. # List of decorators that produce properties, such as abc.abstractproperty. Add
  124. # to this list to register other decorators that produce valid properties.
  125. property-classes=abc.abstractproperty
  126. # Naming hint for variable names
  127. variable-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  128. # Regular expression matching correct variable names
  129. variable-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  130. [TYPECHECK]
  131. # List of decorators that produce context managers, such as
  132. # contextlib.contextmanager. Add to this list to register other decorators that
  133. # produce valid context managers.
  134. contextmanager-decorators=contextlib.contextmanager
  135. # List of members which are set dynamically and missed by pylint inference
  136. # system, and so shouldn't trigger E1101 when accessed. Python regular
  137. # expressions are accepted.
  138. generated-members=
  139. # Tells whether missing members accessed in mixin class should be ignored. A
  140. # mixin class is detected if its name ends with "mixin" (case insensitive).
  141. ignore-mixin-members=yes
  142. # List of class names for which member attributes should not be checked (useful
  143. # for classes with dynamically set attributes). This supports the use of
  144. # qualified names.
  145. ignored-classes=optparse.Values,thread._local,_thread._local
  146. # List of module names for which member attributes should not be checked
  147. # (useful for modules/projects where namespaces are manipulated during runtime
  148. # and thus existing member attributes cannot be deduced by static analysis. It
  149. # supports qualified module names, as well as Unix pattern matching.
  150. ignored-modules=
  151. # Show a hint with possible names when a member name was not found. The aspect
  152. # of finding the hint is based on edit distance.
  153. missing-member-hint=yes
  154. # The minimum edit distance a name should have in order to be considered a
  155. # similar match for a missing member name.
  156. missing-member-hint-distance=1
  157. # The total number of similar names that should be taken in consideration when
  158. # showing a hint for a missing member.
  159. missing-member-max-choices=1
  160. [SPELLING]
  161. # Spelling dictionary name. Available dictionaries: none. To make it working
  162. # install python-enchant package.
  163. spelling-dict=
  164. # List of comma separated words that should not be checked.
  165. spelling-ignore-words=
  166. # A path to a file that contains private dictionary; one word per line.
  167. spelling-private-dict-file=
  168. # Tells whether to store unknown words to indicated private dictionary in
  169. # --spelling-private-dict-file option instead of raising a message.
  170. spelling-store-unknown-words=no
  171. [VARIABLES]
  172. # List of additional names supposed to be defined in builtins. Remember that
  173. # you should avoid to define new builtins when possible.
  174. additional-builtins=
  175. # Tells whether unused global variables should be treated as a violation.
  176. allow-global-unused-variables=yes
  177. # List of strings which can identify a callback function by name. A callback
  178. # name must start or end with one of those strings.
  179. callbacks=cb_,_cb
  180. # A regular expression matching the name of dummy variables (i.e. expectedly
  181. # not used).
  182. dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy
  183. # Argument names that match this expression will be ignored. Default to name
  184. # with leading underscore
  185. ignored-argument-names=_.*
  186. # Tells whether we should check for unused import in __init__ files.
  187. init-import=no
  188. # List of qualified module names which can have objects that can redefine
  189. # builtins.
  190. redefining-builtins-modules=six.moves,future.builtins
  191. [FORMAT]
  192. # Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
  193. expected-line-ending-format=
  194. # Regexp for a line that is allowed to be longer than the limit.
  195. ignore-long-lines=^\s*(# )?<?https?://\S+>?$
  196. # Number of spaces of indent required inside a hanging or continued line.
  197. indent-after-paren=4
  198. # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
  199. # tab).
  200. indent-string=' '
  201. # Maximum number of characters on a single line.
  202. max-line-length=100
  203. # Maximum number of lines in a module
  204. max-module-lines=1000
  205. # List of optional constructs for which whitespace checking is disabled. `dict-
  206. # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
  207. # `trailing-comma` allows a space between comma and closing bracket: (a, ).
  208. # `empty-line` allows space-only lines.
  209. no-space-check=trailing-comma,dict-separator
  210. # Allow the body of an if to be on the same line as the test if there is no
  211. # else.
  212. single-line-if-stmt=no
  213. [MISCELLANEOUS]
  214. # List of note tags to take in consideration, separated by a comma.
  215. notes=FIXME,XXX,TODO
  216. [SIMILARITIES]
  217. # Ignore comments when computing similarities.
  218. ignore-comments=yes
  219. # Ignore docstrings when computing similarities.
  220. ignore-docstrings=yes
  221. # Ignore imports when computing similarities.
  222. ignore-imports=no
  223. # Minimum lines number of a similarity.
  224. min-similarity-lines=4
  225. [IMPORTS]
  226. # Analyse import fallback blocks. This can be used to support both Python 2 and
  227. # 3 compatible code, which means that the block might have code that exists
  228. # only in one or another interpreter, leading to false positives when analysed.
  229. analyse-fallback-blocks=no
  230. # Deprecated modules which should not be used, separated by a comma
  231. deprecated-modules=optparse,tkinter.tix
  232. # Create a graph of external dependencies in the given file (report RP0402 must
  233. # not be disabled)
  234. ext-import-graph=
  235. # Create a graph of every (i.e. internal and external) dependencies in the
  236. # given file (report RP0402 must not be disabled)
  237. import-graph=
  238. # Create a graph of internal dependencies in the given file (report RP0402 must
  239. # not be disabled)
  240. int-import-graph=
  241. # Force import order to recognize a module as part of the standard
  242. # compatibility libraries.
  243. known-standard-library=
  244. # Force import order to recognize a module as part of a third party library.
  245. known-third-party=enchant
  246. [DESIGN]
  247. # Maximum number of arguments for function / method
  248. max-args=5
  249. # Maximum number of attributes for a class (see R0902).
  250. max-attributes=7
  251. # Maximum number of boolean expressions in a if statement
  252. max-bool-expr=5
  253. # Maximum number of branch for function / method body
  254. max-branches=12
  255. # Maximum number of locals for function / method body
  256. max-locals=15
  257. # Maximum number of parents for a class (see R0901).
  258. max-parents=7
  259. # Maximum number of public methods for a class (see R0904).
  260. max-public-methods=20
  261. # Maximum number of return / yield for function / method body
  262. max-returns=6
  263. # Maximum number of statements in function / method body
  264. max-statements=50
  265. # Minimum number of public methods for a class (see R0903).
  266. min-public-methods=2
  267. [CLASSES]
  268. # List of method names used to declare (i.e. assign) instance attributes.
  269. defining-attr-methods=__init__,__new__,setUp
  270. # List of member names, which should be excluded from the protected access
  271. # warning.
  272. exclude-protected=_asdict,_fields,_replace,_source,_make
  273. # List of valid names for the first argument in a class method.
  274. valid-classmethod-first-arg=cls
  275. # List of valid names for the first argument in a metaclass class method.
  276. valid-metaclass-classmethod-first-arg=mcs
  277. [EXCEPTIONS]
  278. # Exceptions that will emit a warning when being caught. Defaults to
  279. # "Exception"
  280. overgeneral-exceptions=Exception