pylintrc-2.17 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712
  1. # Default config file for our pylint-2.17 wrapper.
  2. [MAIN]
  3. # Analyse import fallback blocks. This can be used to support both Python 2 and
  4. # 3 compatible code, which means that the block might have code that exists
  5. # only in one or another interpreter, leading to false positives when analysed.
  6. analyse-fallback-blocks=no
  7. # Clear in-memory caches upon conclusion of linting. Useful if running pylint
  8. # in a server-like mode.
  9. clear-cache-post-run=no
  10. # Load and enable all available extensions. Use --list-extensions to see a list
  11. # all available extensions.
  12. #enable-all-extensions=
  13. # In error mode, messages with a category besides ERROR or FATAL are
  14. # suppressed, and no reports are done by default. Error mode is compatible with
  15. # disabling specific errors.
  16. #errors-only=
  17. # Always return a 0 (non-error) status code, even if lint errors are found.
  18. # This is primarily useful in continuous integration scripts.
  19. #exit-zero=
  20. # A comma-separated list of package or module names from where C extensions may
  21. # be loaded. Extensions are loading into the active Python interpreter and may
  22. # run arbitrary code.
  23. extension-pkg-allow-list=
  24. # A comma-separated list of package or module names from where C extensions may
  25. # be loaded. Extensions are loading into the active Python interpreter and may
  26. # run arbitrary code. (This is an alternative name to extension-pkg-allow-list
  27. # for backward compatibility.)
  28. extension-pkg-whitelist=
  29. # Return non-zero exit code if any of these messages/categories are detected,
  30. # even if score is above --fail-under value. Syntax same as enable. Messages
  31. # specified are enabled, while categories only check already-enabled messages.
  32. fail-on=
  33. # Specify a score threshold under which the program will exit with error.
  34. fail-under=10
  35. # Interpret the stdin as a python script, whose filename needs to be passed as
  36. # the module_or_package argument.
  37. #from-stdin=
  38. # Files or directories to be skipped. They should be base names, not paths.
  39. ignore=CVS
  40. # Add files or directories matching the regular expressions patterns to the
  41. # ignore-list. The regex matches against paths and can be in Posix or Windows
  42. # format. Because '\\' represents the directory delimiter on Windows systems,
  43. # it can't be used as an escape character.
  44. ignore-paths=
  45. # Files or directories matching the regular expression patterns are skipped.
  46. # The regex matches against base names, not paths. The default value ignores
  47. # Emacs file locks
  48. ignore-patterns=^\.#
  49. # List of module names for which member attributes should not be checked
  50. # (useful for modules/projects where namespaces are manipulated during runtime
  51. # and thus existing member attributes cannot be deduced by static analysis). It
  52. # supports qualified module names, as well as Unix pattern matching.
  53. ignored-modules=
  54. # Python code to execute, usually for sys.path manipulation such as
  55. # pygtk.require().
  56. #init-hook=
  57. # Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
  58. # number of processors available to use, and will cap the count on Windows to
  59. # avoid hangs.
  60. jobs=0
  61. # Control the amount of potential inferred values when inferring a single
  62. # object. This can help the performance when dealing with large functions or
  63. # complex, nested conditions.
  64. limit-inference-results=100
  65. # List of plugins (as comma separated values of python module names) to load,
  66. # usually to register additional checkers.
  67. load-plugins=pylint_quotes
  68. # Pickle collected data for later comparisons.
  69. persistent=yes
  70. # Minimum Python version to use for version dependent checks. Will default to
  71. # the version used to run pylint.
  72. py-version=3.11
  73. # Discover python modules and packages in the file system subtree.
  74. recursive=no
  75. # Add paths to the list of the source roots. Supports globbing patterns. The
  76. # source root is an absolute path or a path relative to the current working
  77. # directory used to determine a package namespace for modules located under the
  78. # source root.
  79. source-roots=
  80. # When enabled, pylint would attempt to guess common misconfiguration and emit
  81. # user-friendly hints instead of false-positive error messages.
  82. suggestion-mode=yes
  83. # Allow loading of arbitrary C extensions. Extensions are imported into the
  84. # active Python interpreter and may run arbitrary code.
  85. unsafe-load-any-extension=no
  86. # In verbose mode, extra non-checker-related info will be displayed.
  87. #verbose=
  88. [BASIC]
  89. # Naming style matching correct argument names.
  90. argument-naming-style=snake_case
  91. # Regular expression matching correct argument names. Overrides argument-
  92. # naming-style. If left empty, argument names will be checked with the set
  93. # naming style.
  94. argument-rgx=[a-z_][a-z0-9_]{2,30}$
  95. # Naming style matching correct attribute names.
  96. attr-naming-style=snake_case
  97. # Regular expression matching correct attribute names. Overrides attr-naming-
  98. # style. If left empty, attribute names will be checked with the set naming
  99. # style.
  100. attr-rgx=[a-z_][a-z0-9_]{2,30}$
  101. # Bad variable names which should always be refused, separated by a comma.
  102. bad-names=foo,
  103. bar,
  104. baz,
  105. toto,
  106. tutu,
  107. tata
  108. # Bad variable names regexes, separated by a comma. If names match any regex,
  109. # they will always be refused
  110. bad-names-rgxs=
  111. # Naming style matching correct class attribute names.
  112. class-attribute-naming-style=any
  113. # Regular expression matching correct class attribute names. Overrides class-
  114. # attribute-naming-style. If left empty, class attribute names will be checked
  115. # with the set naming style.
  116. #class-attribute-rgx=
  117. # Naming style matching correct class constant names.
  118. class-const-naming-style=UPPER_CASE
  119. # Regular expression matching correct class constant names. Overrides class-
  120. # const-naming-style. If left empty, class constant names will be checked with
  121. # the set naming style.
  122. #class-const-rgx=
  123. # Naming style matching correct class names.
  124. class-naming-style=PascalCase
  125. # Regular expression matching correct class names. Overrides class-naming-
  126. # style. If left empty, class names will be checked with the set naming style.
  127. class-rgx=[A-Z_][a-zA-Z0-9]+$
  128. # Naming style matching correct constant names.
  129. const-naming-style=UPPER_CASE
  130. # Regular expression matching correct constant names. Overrides const-naming-
  131. # style. If left empty, constant names will be checked with the set naming
  132. # style.
  133. const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
  134. # Minimum line length for functions/classes that require docstrings, shorter
  135. # ones are exempt.
  136. docstring-min-length=-1
  137. # Naming style matching correct function names.
  138. function-naming-style=snake_case
  139. # Regular expression matching correct function names. Overrides function-
  140. # naming-style. If left empty, function names will be checked with the set
  141. # naming style.
  142. function-rgx=[a-z_][a-z0-9_]{2,30}$
  143. # Good variable names which should always be accepted, separated by a comma.
  144. good-names=i,
  145. j,
  146. k,
  147. ex,
  148. Run,
  149. _
  150. # Good variable names regexes, separated by a comma. If names match any regex,
  151. # they will always be accepted
  152. good-names-rgxs=
  153. # Include a hint for the correct naming format with invalid-name.
  154. include-naming-hint=no
  155. # Naming style matching correct inline iteration names.
  156. inlinevar-naming-style=any
  157. # Regular expression matching correct inline iteration names. Overrides
  158. # inlinevar-naming-style. If left empty, inline iteration names will be checked
  159. # with the set naming style.
  160. inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
  161. # Naming style matching correct method names.
  162. method-naming-style=snake_case
  163. # Regular expression matching correct method names. Overrides method-naming-
  164. # style. If left empty, method names will be checked with the set naming style.
  165. method-rgx=[a-z_][a-z0-9_]{2,30}$
  166. # Naming style matching correct module names.
  167. module-naming-style=snake_case
  168. # Regular expression matching correct module names. Overrides module-naming-
  169. # style. If left empty, module names will be checked with the set naming style.
  170. module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
  171. # Colon-delimited sets of names that determine each other's naming style when
  172. # the name regexes allow several styles.
  173. name-group=
  174. # Regular expression which should only match function or class names that do
  175. # not require a docstring.
  176. no-docstring-rgx=__.*__
  177. # List of decorators that produce properties, such as abc.abstractproperty. Add
  178. # to this list to register other decorators that produce valid properties.
  179. # These decorators are taken in consideration only for invalid-name.
  180. property-classes=abc.abstractproperty
  181. # Regular expression matching correct type alias names. If left empty, type
  182. # alias names will be checked with the set naming style.
  183. #typealias-rgx=
  184. # Regular expression matching correct type variable names. If left empty, type
  185. # variable names will be checked with the set naming style.
  186. #typevar-rgx=
  187. # Naming style matching correct variable names.
  188. variable-naming-style=snake_case
  189. # Regular expression matching correct variable names. Overrides variable-
  190. # naming-style. If left empty, variable names will be checked with the set
  191. # naming style.
  192. variable-rgx=[a-z_][a-z0-9_]{2,30}$
  193. [CLASSES]
  194. # Warn about protected attribute access inside special methods
  195. check-protected-access-in-special-methods=no
  196. # List of method names used to declare (i.e. assign) instance attributes.
  197. defining-attr-methods=__init__,
  198. __new__,
  199. setUp
  200. # List of member names, which should be excluded from the protected access
  201. # warning.
  202. exclude-protected=_asdict,_fields,_replace,_source,_make,os._exit
  203. # List of valid names for the first argument in a class method.
  204. valid-classmethod-first-arg=cls
  205. # List of valid names for the first argument in a metaclass class method.
  206. valid-metaclass-classmethod-first-arg=mcs
  207. [DESIGN]
  208. # List of regular expressions of class ancestor names to ignore when counting
  209. # public methods (see R0903)
  210. exclude-too-few-public-methods=
  211. # List of qualified class names to ignore when counting class parents (see
  212. # R0901)
  213. ignored-parents=
  214. # Maximum number of arguments for function / method.
  215. max-args=5
  216. # Maximum number of attributes for a class (see R0902).
  217. max-attributes=7
  218. # Maximum number of boolean expressions in an if statement (see R0916).
  219. max-bool-expr=5
  220. # Maximum number of branch for function / method body.
  221. max-branches=12
  222. # Maximum number of locals for function / method body.
  223. max-locals=15
  224. # Maximum number of parents for a class (see R0901).
  225. max-parents=7
  226. # Maximum number of public methods for a class (see R0904).
  227. max-public-methods=20
  228. # Maximum number of return / yield for function / method body.
  229. max-returns=6
  230. # Maximum number of statements in function / method body.
  231. max-statements=50
  232. # Minimum number of public methods for a class (see R0903).
  233. min-public-methods=2
  234. [EXCEPTIONS]
  235. # Exceptions that will emit a warning when caught.
  236. overgeneral-exceptions=builtin.Exception
  237. [FORMAT]
  238. # Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
  239. expected-line-ending-format=
  240. # Regexp for a line that is allowed to be longer than the limit.
  241. ignore-long-lines=^\s*(# )?<?https?://\S+>?$
  242. # Number of spaces of indent required inside a hanging or continued line.
  243. indent-after-paren=4
  244. # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
  245. # tab).
  246. indent-string=' '
  247. # Maximum number of characters on a single line.
  248. max-line-length=80
  249. # Maximum number of lines in a module.
  250. max-module-lines=1000
  251. # Allow the body of a class to be on the same line as the declaration if body
  252. # contains single statement.
  253. single-line-class-stmt=no
  254. # Allow the body of an if to be on the same line as the test if there is no
  255. # else.
  256. single-line-if-stmt=no
  257. [IMPORTS]
  258. # List of modules that can be imported at any level, not just the top level
  259. # one.
  260. allow-any-import-level=
  261. # Allow explicit reexports by alias from a package __init__.
  262. allow-reexport-from-package=no
  263. # Allow wildcard imports from modules that define __all__.
  264. allow-wildcard-with-all=no
  265. # Deprecated modules which should not be used, separated by a comma.
  266. deprecated-modules=regsub,
  267. string,
  268. TERMIOS,
  269. Bastion,
  270. rexec
  271. # Output a graph (.gv or any supported image format) of external dependencies
  272. # to the given file (report RP0402 must not be disabled).
  273. ext-import-graph=
  274. # Output a graph (.gv or any supported image format) of all (i.e. internal and
  275. # external) dependencies to the given file (report RP0402 must not be
  276. # disabled).
  277. import-graph=
  278. # Output a graph (.gv or any supported image format) of internal dependencies
  279. # to the given file (report RP0402 must not be disabled).
  280. int-import-graph=
  281. # Force import order to recognize a module as part of the standard
  282. # compatibility libraries.
  283. known-standard-library=
  284. # Force import order to recognize a module as part of a third party library.
  285. known-third-party=enchant
  286. # Couples of modules and preferred modules, separated by a comma.
  287. preferred-modules=
  288. [LOGGING]
  289. # The type of string formatting that logging methods do. `old` means using %
  290. # formatting, `new` is for `{}` formatting.
  291. logging-format-style=old
  292. # Logging modules to check that the string format arguments are in logging
  293. # function parameter format.
  294. logging-modules=logging
  295. [MESSAGES CONTROL]
  296. # Only show warnings with the listed confidence levels. Leave empty to show
  297. # all. Valid levels: HIGH, CONTROL_FLOW, INFERENCE, INFERENCE_FAILURE,
  298. # UNDEFINED.
  299. confidence=HIGH,
  300. CONTROL_FLOW,
  301. INFERENCE,
  302. INFERENCE_FAILURE,
  303. UNDEFINED
  304. # Disable the message, report, category or checker with the given id(s). You
  305. # can either give multiple identifiers separated by comma (,) or put this
  306. # option multiple times (only on the command line, not in the configuration
  307. # file where it should appear only once). You can also use "--disable=all" to
  308. # disable everything first and then re-enable specific checks. For example, if
  309. # you want to run only the similarities checker, you can use "--disable=all
  310. # --enable=similarities". If you want to run only the classes checker, but have
  311. # no Warning level messages displayed, use "--disable=all --enable=classes
  312. # --disable=W".
  313. disable=raw-checker-failed,
  314. bad-inline-option,
  315. locally-disabled,
  316. file-ignored,
  317. suppressed-message,
  318. useless-suppression,
  319. deprecated-pragma,
  320. use-symbolic-message-instead,
  321. invalid-name,
  322. missing-module-docstring,
  323. missing-class-docstring,
  324. missing-function-docstring,
  325. too-many-lines,
  326. duplicate-code,
  327. too-many-ancestors,
  328. too-many-instance-attributes,
  329. too-few-public-methods,
  330. too-many-public-methods,
  331. too-many-return-statements,
  332. too-many-branches,
  333. too-many-arguments,
  334. too-many-locals,
  335. too-many-statements,
  336. exec-used,
  337. deprecated-module,
  338. reimported,
  339. fixme,
  340. global-statement,
  341. broad-exception-caught,
  342. logging-not-lazy,
  343. anomalous-backslash-in-string,
  344. assigning-non-slot,
  345. unexpected-special-method-signature,
  346. bad-indentation,
  347. bad-str-strip-call,
  348. bad-super-call,
  349. cell-var-from-loop,
  350. consider-using-enumerate,
  351. deprecated-method,
  352. eval-used,
  353. function-redefined,
  354. import-error,
  355. invalid-docstring-quote,
  356. invalid-string-quote,
  357. invalid-triple-quote,
  358. line-too-long,
  359. misplaced-bare-raise,
  360. missing-final-newline,
  361. multiple-imports,
  362. no-name-in-module,
  363. no-self-argument,
  364. not-an-iterable,
  365. not-callable,
  366. protected-access,
  367. simplifiable-if-statement,
  368. singleton-comparison,
  369. superfluous-parens,
  370. too-many-boolean-expressions,
  371. too-many-function-args,
  372. too-many-nested-blocks,
  373. trailing-whitespace,
  374. undefined-variable,
  375. ungrouped-imports,
  376. unnecessary-semicolon,
  377. unneeded-not,
  378. unpacking-non-sequence,
  379. unsubscriptable-object,
  380. unsupported-membership-test,
  381. unused-import,
  382. useless-else-on-loop,
  383. using-constant-test,
  384. wrong-import-order,
  385. wrong-import-position
  386. # Enable the message, report, category or checker with the given id(s). You can
  387. # either give multiple identifier separated by comma (,) or put this option
  388. # multiple time (only on the command line, not in the configuration file where
  389. # it should appear only once). See also the "--disable" option for examples.
  390. enable=c-extension-no-member
  391. [METHOD_ARGS]
  392. # List of qualified names (i.e., library.method) which require a timeout
  393. # parameter e.g. 'requests.api.get,requests.api.post'
  394. timeout-methods=requests.api.delete,requests.api.get,requests.api.head,requests.api.options,requests.api.patch,requests.api.post,requests.api.put,requests.api.request
  395. [MISCELLANEOUS]
  396. # List of note tags to take in consideration, separated by a comma.
  397. notes=FIXME,
  398. XXX,
  399. TODO
  400. # Regular expression of note tags to take in consideration.
  401. notes-rgx=
  402. [REFACTORING]
  403. # Maximum number of nested blocks for function / method body
  404. max-nested-blocks=5
  405. # Complete name of functions that never returns. When checking for
  406. # inconsistent-return-statements if a never returning function is called then
  407. # it will be considered as an explicit return statement and no message will be
  408. # printed.
  409. never-returning-functions=sys.exit,argparse.parse_error
  410. [REPORTS]
  411. # Python expression which should return a score less than or equal to 10. You
  412. # have access to the variables 'fatal', 'error', 'warning', 'refactor',
  413. # 'convention', and 'info' which contain the number of messages in each
  414. # category, as well as 'statement' which is the total number of statements
  415. # analyzed. This score is used by the global evaluation report (RP0004).
  416. evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
  417. # Template used to display messages. This is a python new-style format string
  418. # used to format the message information. See doc for all details.
  419. msg-template=
  420. # Set the output format. Available formats are text, parseable, colorized, json
  421. # and msvs (visual studio). You can also give a reporter class, e.g.
  422. # mypackage.mymodule.MyReporterClass.
  423. #output-format=
  424. # Tells whether to display a full report or only the messages.
  425. reports=no
  426. # Activate the evaluation score.
  427. score=no
  428. [SIMILARITIES]
  429. # Comments are removed from the similarity computation
  430. ignore-comments=yes
  431. # Docstrings are removed from the similarity computation
  432. ignore-docstrings=yes
  433. # Imports are removed from the similarity computation
  434. ignore-imports=yes
  435. # Signatures are removed from the similarity computation
  436. ignore-signatures=yes
  437. # Minimum lines number of a similarity.
  438. min-similarity-lines=4
  439. [SPELLING]
  440. # Limits count of emitted suggestions for spelling mistakes.
  441. max-spelling-suggestions=4
  442. # Spelling dictionary name. No available dictionaries : You need to install
  443. # both the python package and the system dependency for enchant to work..
  444. spelling-dict=
  445. # List of comma separated words that should be considered directives if they
  446. # appear at the beginning of a comment and should not be checked.
  447. spelling-ignore-comment-directives=fmt: on,fmt: off,noqa:,noqa,nosec,isort:skip,mypy:
  448. # List of comma separated words that should not be checked.
  449. spelling-ignore-words=
  450. # A path to a file that contains the private dictionary; one word per line.
  451. spelling-private-dict-file=
  452. # Tells whether to store unknown words to the private dictionary (see the
  453. # --spelling-private-dict-file option) instead of raising a message.
  454. spelling-store-unknown-words=no
  455. [STRING]
  456. # This flag controls whether inconsistent-quotes generates a warning when the
  457. # character used as a quote delimiter is used inconsistently within a module.
  458. check-quote-consistency=no
  459. # This flag controls whether the implicit-str-concat should generate a warning
  460. # on implicit string concatenation in sequences defined over several lines.
  461. check-str-concat-over-line-jumps=no
  462. [STRING_QUOTES]
  463. # The quote character for triple-quoted docstrings.
  464. docstring-quote=double
  465. # The quote character for string literals.
  466. string-quote=single-avoid-escape
  467. # The quote character for triple-quoted strings (non-docstring).
  468. triple-quote=double
  469. [TYPECHECK]
  470. # List of decorators that produce context managers, such as
  471. # contextlib.contextmanager. Add to this list to register other decorators that
  472. # produce valid context managers.
  473. contextmanager-decorators=contextlib.contextmanager
  474. # List of members which are set dynamically and missed by pylint inference
  475. # system, and so shouldn't trigger E1101 when accessed. Python regular
  476. # expressions are accepted.
  477. generated-members=REQUEST,acl_users,aq_parent,multiprocessing.managers.SyncManager
  478. # Tells whether to warn about missing members when the owner of the attribute
  479. # is inferred to be None.
  480. ignore-none=yes
  481. # This flag controls whether pylint should warn about no-member and similar
  482. # checks whenever an opaque object is returned when inferring. The inference
  483. # can return multiple potential results while evaluating a Python object, but
  484. # some branches might not be evaluated, which results in partial inference. In
  485. # that case, it might be useful to still emit no-member and other checks for
  486. # the rest of the inferred objects.
  487. ignore-on-opaque-inference=yes
  488. # List of symbolic message names to ignore for Mixin members.
  489. ignored-checks-for-mixins=no-member,
  490. not-async-context-manager,
  491. not-context-manager,
  492. attribute-defined-outside-init
  493. # List of class names for which member attributes should not be checked (useful
  494. # for classes with dynamically set attributes). This supports the use of
  495. # qualified names.
  496. ignored-classes=SQLObject,twisted.internet.reactor,hashlib,google.appengine.api.memcache
  497. # Show a hint with possible names when a member name was not found. The aspect
  498. # of finding the hint is based on edit distance.
  499. missing-member-hint=yes
  500. # The minimum edit distance a name should have in order to be considered a
  501. # similar match for a missing member name.
  502. missing-member-hint-distance=1
  503. # The total number of similar names that should be taken in consideration when
  504. # showing a hint for a missing member.
  505. missing-member-max-choices=1
  506. # Regex pattern to define which classes are considered mixins.
  507. mixin-class-rgx=.*[Mm]ixin
  508. # List of decorators that change the signature of a decorated function.
  509. signature-mutators=
  510. [VARIABLES]
  511. # List of additional names supposed to be defined in builtins. Remember that
  512. # you should avoid defining new builtins when possible.
  513. additional-builtins=
  514. # Tells whether unused global variables should be treated as a violation.
  515. allow-global-unused-variables=yes
  516. # List of names allowed to shadow builtins
  517. allowed-redefined-builtins=
  518. # List of strings which can identify a callback function by name. A callback
  519. # name must start or end with one of those strings.
  520. callbacks=cb_,
  521. _cb
  522. # A regular expression matching the name of dummy variables (i.e. expected to
  523. # not be used).
  524. dummy-variables-rgx=_|dummy
  525. # Argument names that match this expression will be ignored.
  526. ignored-argument-names=_.*
  527. # Tells whether we should check for unused import in __init__ files.
  528. init-import=no
  529. # List of qualified module names which can have objects that can redefine
  530. # builtins.
  531. redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io