.pylintrc 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  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. Specifying 0 will auto-detect the
  16. # number of processors available to use.
  17. jobs=1
  18. # Control the amount of potential inferred values when inferring a single
  19. # object. This can help the performance when dealing with large functions or
  20. # complex, nested conditions.
  21. limit-inference-results=100
  22. # List of plugins (as comma separated values of python module names) to load,
  23. # usually to register additional checkers.
  24. load-plugins=
  25. # Pickle collected data for later comparisons.
  26. persistent=yes
  27. # Specify a configuration file.
  28. #rcfile=
  29. # When enabled, pylint would attempt to guess common misconfiguration and emit
  30. # user-friendly hints instead of false-positive error messages.
  31. suggestion-mode=yes
  32. # Allow loading of arbitrary C extensions. Extensions are imported into the
  33. # active Python interpreter and may run arbitrary code.
  34. unsafe-load-any-extension=no
  35. [MESSAGES CONTROL]
  36. # Only show warnings with the listed confidence levels. Leave empty to show
  37. # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED.
  38. confidence=
  39. # Disable the message, report, category or checker with the given id(s). You
  40. # can either give multiple identifiers separated by comma (,) or put this
  41. # option multiple times (only on the command line, not in the configuration
  42. # file where it should appear only once). You can also use "--disable=all" to
  43. # disable everything first and then re-enable specific checks. For example, if
  44. # you want to run only the similarities checker, you can use "--disable=all
  45. # --enable=similarities". If you want to run only the classes checker, but have
  46. # no Warning level messages displayed, use "--disable=all --enable=classes
  47. # --disable=W".
  48. disable=print-statement,
  49. parameter-unpacking,
  50. unpacking-in-except,
  51. old-raise-syntax,
  52. backtick,
  53. long-suffix,
  54. old-ne-operator,
  55. old-octal-literal,
  56. import-star-module-level,
  57. non-ascii-bytes-literal,
  58. raw-checker-failed,
  59. bad-inline-option,
  60. locally-disabled,
  61. file-ignored,
  62. suppressed-message,
  63. useless-suppression,
  64. deprecated-pragma,
  65. use-symbolic-message-instead,
  66. apply-builtin,
  67. basestring-builtin,
  68. buffer-builtin,
  69. cmp-builtin,
  70. coerce-builtin,
  71. execfile-builtin,
  72. file-builtin,
  73. long-builtin,
  74. raw_input-builtin,
  75. reduce-builtin,
  76. standarderror-builtin,
  77. unicode-builtin,
  78. xrange-builtin,
  79. coerce-method,
  80. delslice-method,
  81. getslice-method,
  82. setslice-method,
  83. no-absolute-import,
  84. old-division,
  85. dict-iter-method,
  86. dict-view-method,
  87. next-method-called,
  88. metaclass-assignment,
  89. indexing-exception,
  90. raising-string,
  91. reload-builtin,
  92. oct-method,
  93. hex-method,
  94. nonzero-method,
  95. cmp-method,
  96. input-builtin,
  97. round-builtin,
  98. intern-builtin,
  99. unichr-builtin,
  100. map-builtin-not-iterating,
  101. zip-builtin-not-iterating,
  102. range-builtin-not-iterating,
  103. filter-builtin-not-iterating,
  104. using-cmp-argument,
  105. eq-without-hash,
  106. div-method,
  107. idiv-method,
  108. rdiv-method,
  109. exception-message-attribute,
  110. invalid-str-codec,
  111. sys-max-int,
  112. bad-python3-import,
  113. deprecated-string-function,
  114. deprecated-str-translate-call,
  115. deprecated-itertools-function,
  116. deprecated-types-field,
  117. next-method-defined,
  118. dict-items-not-iterating,
  119. dict-keys-not-iterating,
  120. dict-values-not-iterating,
  121. deprecated-operator-function,
  122. deprecated-urllib-function,
  123. xreadlines-attribute,
  124. deprecated-sys-function,
  125. exception-escape,
  126. comprehension-escape
  127. # Enable the message, report, category or checker with the given id(s). You can
  128. # either give multiple identifier separated by comma (,) or put this option
  129. # multiple time (only on the command line, not in the configuration file where
  130. # it should appear only once). See also the "--disable" option for examples.
  131. enable=c-extension-no-member
  132. [REPORTS]
  133. # Python expression which should return a score less than or equal to 10. You
  134. # have access to the variables 'error', 'warning', 'refactor', and 'convention'
  135. # which contain the number of messages in each category, as well as 'statement'
  136. # which is the total number of statements analyzed. This score is used by the
  137. # global evaluation report (RP0004).
  138. evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
  139. # Template used to display messages. This is a python new-style format string
  140. # used to format the message information. See doc for all details.
  141. #msg-template=
  142. # Set the output format. Available formats are text, parseable, colorized, json
  143. # and msvs (visual studio). You can also give a reporter class, e.g.
  144. # mypackage.mymodule.MyReporterClass.
  145. output-format=text
  146. # Tells whether to display a full report or only the messages.
  147. reports=no
  148. # Activate the evaluation score.
  149. score=yes
  150. [REFACTORING]
  151. # Maximum number of nested blocks for function / method body
  152. max-nested-blocks=5
  153. # Complete name of functions that never returns. When checking for
  154. # inconsistent-return-statements if a never returning function is called then
  155. # it will be considered as an explicit return statement and no message will be
  156. # printed.
  157. never-returning-functions=sys.exit
  158. [BASIC]
  159. # Naming style matching correct argument names.
  160. argument-naming-style=snake_case
  161. # Regular expression matching correct argument names. Overrides argument-
  162. # naming-style.
  163. #argument-rgx=
  164. # Naming style matching correct attribute names.
  165. attr-naming-style=snake_case
  166. # Regular expression matching correct attribute names. Overrides attr-naming-
  167. # style.
  168. #attr-rgx=
  169. # Bad variable names which should always be refused, separated by a comma.
  170. bad-names=foo,
  171. bar,
  172. baz,
  173. toto,
  174. tutu,
  175. tata
  176. # Naming style matching correct class attribute names.
  177. class-attribute-naming-style=any
  178. # Regular expression matching correct class attribute names. Overrides class-
  179. # attribute-naming-style.
  180. #class-attribute-rgx=
  181. # Naming style matching correct class names.
  182. class-naming-style=PascalCase
  183. # Regular expression matching correct class names. Overrides class-naming-
  184. # style.
  185. #class-rgx=
  186. # Naming style matching correct constant names.
  187. const-naming-style=UPPER_CASE
  188. # Regular expression matching correct constant names. Overrides const-naming-
  189. # style.
  190. #const-rgx=
  191. # Minimum line length for functions/classes that require docstrings, shorter
  192. # ones are exempt.
  193. docstring-min-length=-1
  194. # Naming style matching correct function names.
  195. function-naming-style=snake_case
  196. # Regular expression matching correct function names. Overrides function-
  197. # naming-style.
  198. #function-rgx=
  199. # Good variable names which should always be accepted, separated by a comma.
  200. good-names=i,
  201. j,
  202. k,
  203. ex,
  204. Run,
  205. _
  206. # Include a hint for the correct naming format with invalid-name.
  207. include-naming-hint=no
  208. # Naming style matching correct inline iteration names.
  209. inlinevar-naming-style=any
  210. # Regular expression matching correct inline iteration names. Overrides
  211. # inlinevar-naming-style.
  212. #inlinevar-rgx=
  213. # Naming style matching correct method names.
  214. method-naming-style=snake_case
  215. # Regular expression matching correct method names. Overrides method-naming-
  216. # style.
  217. #method-rgx=
  218. # Naming style matching correct module names.
  219. module-naming-style=snake_case
  220. # Regular expression matching correct module names. Overrides module-naming-
  221. # style.
  222. #module-rgx=
  223. # Colon-delimited sets of names that determine each other's naming style when
  224. # the name regexes allow several styles.
  225. name-group=
  226. # Regular expression which should only match function or class names that do
  227. # not require a docstring.
  228. no-docstring-rgx=^_
  229. # List of decorators that produce properties, such as abc.abstractproperty. Add
  230. # to this list to register other decorators that produce valid properties.
  231. # These decorators are taken in consideration only for invalid-name.
  232. property-classes=abc.abstractproperty
  233. # Naming style matching correct variable names.
  234. variable-naming-style=snake_case
  235. # Regular expression matching correct variable names. Overrides variable-
  236. # naming-style.
  237. #variable-rgx=
  238. [LOGGING]
  239. # Format style used to check logging format string. `old` means using %
  240. # formatting, `new` is for `{}` formatting,and `fstr` is for f-strings.
  241. logging-format-style=old
  242. # Logging modules to check that the string format arguments are in logging
  243. # function parameter format.
  244. logging-modules=logging
  245. [TYPECHECK]
  246. # List of decorators that produce context managers, such as
  247. # contextlib.contextmanager. Add to this list to register other decorators that
  248. # produce valid context managers.
  249. contextmanager-decorators=contextlib.contextmanager
  250. # List of members which are set dynamically and missed by pylint inference
  251. # system, and so shouldn't trigger E1101 when accessed. Python regular
  252. # expressions are accepted.
  253. generated-members=
  254. # Tells whether missing members accessed in mixin class should be ignored. A
  255. # mixin class is detected if its name ends with "mixin" (case insensitive).
  256. ignore-mixin-members=yes
  257. # Tells whether to warn about missing members when the owner of the attribute
  258. # is inferred to be None.
  259. ignore-none=yes
  260. # This flag controls whether pylint should warn about no-member and similar
  261. # checks whenever an opaque object is returned when inferring. The inference
  262. # can return multiple potential results while evaluating a Python object, but
  263. # some branches might not be evaluated, which results in partial inference. In
  264. # that case, it might be useful to still emit no-member and other checks for
  265. # the rest of the inferred objects.
  266. ignore-on-opaque-inference=yes
  267. # List of class names for which member attributes should not be checked (useful
  268. # for classes with dynamically set attributes). This supports the use of
  269. # qualified names.
  270. ignored-classes=optparse.Values,thread._local,_thread._local
  271. # List of module names for which member attributes should not be checked
  272. # (useful for modules/projects where namespaces are manipulated during runtime
  273. # and thus existing member attributes cannot be deduced by static analysis). It
  274. # supports qualified module names, as well as Unix pattern matching.
  275. ignored-modules=
  276. # Show a hint with possible names when a member name was not found. The aspect
  277. # of finding the hint is based on edit distance.
  278. missing-member-hint=yes
  279. # The minimum edit distance a name should have in order to be considered a
  280. # similar match for a missing member name.
  281. missing-member-hint-distance=1
  282. # The total number of similar names that should be taken in consideration when
  283. # showing a hint for a missing member.
  284. missing-member-max-choices=1
  285. # List of decorators that change the signature of a decorated function.
  286. signature-mutators=
  287. [SIMILARITIES]
  288. # Ignore comments when computing similarities.
  289. ignore-comments=yes
  290. # Ignore docstrings when computing similarities.
  291. ignore-docstrings=yes
  292. # Ignore imports when computing similarities.
  293. ignore-imports=no
  294. # Minimum lines number of a similarity.
  295. min-similarity-lines=4
  296. [STRING]
  297. # This flag controls whether the implicit-str-concat-in-sequence should
  298. # generate a warning on implicit string concatenation in sequences defined over
  299. # several lines.
  300. check-str-concat-over-line-jumps=no
  301. [VARIABLES]
  302. # List of additional names supposed to be defined in builtins. Remember that
  303. # you should avoid defining new builtins when possible.
  304. additional-builtins=
  305. # Tells whether unused global variables should be treated as a violation.
  306. allow-global-unused-variables=yes
  307. # List of strings which can identify a callback function by name. A callback
  308. # name must start or end with one of those strings.
  309. callbacks=cb_,
  310. _cb
  311. # A regular expression matching the name of dummy variables (i.e. expected to
  312. # not be used).
  313. dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
  314. # Argument names that match this expression will be ignored. Default to name
  315. # with leading underscore.
  316. ignored-argument-names=_.*|^ignored_|^unused_
  317. # Tells whether we should check for unused import in __init__ files.
  318. init-import=no
  319. # List of qualified module names which can have objects that can redefine
  320. # builtins.
  321. redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io
  322. [FORMAT]
  323. # Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
  324. expected-line-ending-format=
  325. # Regexp for a line that is allowed to be longer than the limit.
  326. ignore-long-lines=^\s*(# )?<?https?://\S+>?$
  327. # Number of spaces of indent required inside a hanging or continued line.
  328. indent-after-paren=4
  329. # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
  330. # tab).
  331. indent-string=' '
  332. # Maximum number of characters on a single line.
  333. max-line-length=90
  334. # Maximum number of lines in a module.
  335. max-module-lines=1000
  336. # List of optional constructs for which whitespace checking is disabled. `dict-
  337. # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
  338. # `trailing-comma` allows a space between comma and closing bracket: (a, ).
  339. # `empty-line` allows space-only lines.
  340. no-space-check=trailing-comma,
  341. dict-separator
  342. # Allow the body of a class to be on the same line as the declaration if body
  343. # contains single statement.
  344. single-line-class-stmt=no
  345. # Allow the body of an if to be on the same line as the test if there is no
  346. # else.
  347. single-line-if-stmt=no
  348. [MISCELLANEOUS]
  349. # List of note tags to take in consideration, separated by a comma.
  350. notes=FIXME,
  351. XXX,
  352. TODO
  353. [SPELLING]
  354. # Limits count of emitted suggestions for spelling mistakes.
  355. max-spelling-suggestions=4
  356. # Spelling dictionary name. Available dictionaries: none. To make it work,
  357. # install the python-enchant package.
  358. spelling-dict=
  359. # List of comma separated words that should not be checked.
  360. spelling-ignore-words=
  361. # A path to a file that contains the private dictionary; one word per line.
  362. spelling-private-dict-file=
  363. # Tells whether to store unknown words to the private dictionary (see the
  364. # --spelling-private-dict-file option) instead of raising a message.
  365. spelling-store-unknown-words=no
  366. [CLASSES]
  367. # List of method names used to declare (i.e. assign) instance attributes.
  368. defining-attr-methods=__init__,
  369. __new__,
  370. setUp,
  371. __post_init__
  372. # List of member names, which should be excluded from the protected access
  373. # warning.
  374. exclude-protected=_asdict,
  375. _fields,
  376. _replace,
  377. _source,
  378. _make
  379. # List of valid names for the first argument in a class method.
  380. valid-classmethod-first-arg=cls
  381. # List of valid names for the first argument in a metaclass class method.
  382. valid-metaclass-classmethod-first-arg=cls
  383. [DESIGN]
  384. # Maximum number of arguments for function / method.
  385. max-args=10
  386. # Maximum number of attributes for a class (see R0902).
  387. max-attributes=20
  388. # Maximum number of boolean expressions in an if statement (see R0916).
  389. max-bool-expr=5
  390. # Maximum number of branch for function / method body.
  391. max-branches=12
  392. # Maximum number of locals for function / method body.
  393. max-locals=15
  394. # Maximum number of parents for a class (see R0901).
  395. max-parents=7
  396. # Maximum number of public methods for a class (see R0904).
  397. max-public-methods=20
  398. # Maximum number of return / yield for function / method body.
  399. max-returns=6
  400. # Maximum number of statements in function / method body.
  401. max-statements=50
  402. # Minimum number of public methods for a class (see R0903).
  403. min-public-methods=2
  404. [IMPORTS]
  405. # List of modules that can be imported at any level, not just the top level
  406. # one.
  407. allow-any-import-level=
  408. # Allow wildcard imports from modules that define __all__.
  409. allow-wildcard-with-all=no
  410. # Analyse import fallback blocks. This can be used to support both Python 2 and
  411. # 3 compatible code, which means that the block might have code that exists
  412. # only in one or another interpreter, leading to false positives when analysed.
  413. analyse-fallback-blocks=no
  414. # Deprecated modules which should not be used, separated by a comma.
  415. deprecated-modules=optparse,tkinter.tix
  416. # Create a graph of external dependencies in the given file (report RP0402 must
  417. # not be disabled).
  418. ext-import-graph=
  419. # Create a graph of every (i.e. internal and external) dependencies in the
  420. # given file (report RP0402 must not be disabled).
  421. import-graph=
  422. # Create a graph of internal dependencies in the given file (report RP0402 must
  423. # not be disabled).
  424. int-import-graph=
  425. # Force import order to recognize a module as part of the standard
  426. # compatibility libraries.
  427. known-standard-library=
  428. # Force import order to recognize a module as part of a third party library.
  429. known-third-party=enchant
  430. # Couples of modules and preferred modules, separated by a comma.
  431. preferred-modules=
  432. [EXCEPTIONS]
  433. # Exceptions that will emit a warning when being caught. Defaults to
  434. # "BaseException, Exception".
  435. overgeneral-exceptions=BaseException,
  436. Exception