.pylintrc 24 KB

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