You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

433 lines
16 KiB

6 years ago
  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. jobs=2
  18. # List of plugins (as comma separated values of python modules names) to load,
  19. # usually to register additional checkers.
  20. load-plugins=
  21. # Pickle collected data for later comparisons.
  22. persistent=yes
  23. # Specify a configuration file.
  24. #rcfile=
  25. # Allow loading of arbitrary C extensions. Extensions are imported into the
  26. # active Python interpreter and may run arbitrary code.
  27. unsafe-load-any-extension=no
  28. [MESSAGES CONTROL]
  29. # Only show warnings with the listed confidence levels. Leave empty to show
  30. # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED
  31. confidence=
  32. # Disable the message, report, category or checker with the given id(s). You
  33. # can either give multiple identifiers separated by comma (,) or put this
  34. # option multiple times (only on the command line, not in the configuration
  35. # file where it should appear only once).You can also use "--disable=all" to
  36. # disable everything first and then reenable specific checks. For example, if
  37. # you want to run only the similarities checker, you can use "--disable=all
  38. # --enable=similarities". If you want to run only the classes checker, but have
  39. # no Warning level messages displayed, use"--disable=all --enable=classes
  40. # --disable=W"
  41. # disable=import-error,print-statement,parameter-unpacking,unpacking-in-except,old-raise-syntax,backtick,long-suffix,old-ne-operator,old-octal-literal,import-star-module-level,raw-checker-failed,bad-inline-option,locally-disabled,locally-enabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma,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
  42. disable=print-statement,parameter-unpacking,unpacking-in-except,old-raise-syntax,backtick,long-suffix,old-ne-operator,old-octal-literal,import-star-module-level,raw-checker-failed,bad-inline-option,locally-disabled,locally-enabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma,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,import-error
  43. # Enable the message, report, category or checker with the given id(s). You can
  44. # either give multiple identifier separated by comma (,) or put this option
  45. # multiple time (only on the command line, not in the configuration file where
  46. # it should appear only once). See also the "--disable" option for examples.
  47. enable=
  48. [REPORTS]
  49. # Python expression which should return a note less than 10 (10 is the highest
  50. # note). You have access to the variables errors warning, statement which
  51. # respectively contain the number of errors / warnings messages and the total
  52. # number of statements analyzed. This is used by the global evaluation report
  53. # (RP0004).
  54. evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
  55. # Template used to display messages. This is a python new-style format string
  56. # used to format the message information. See doc for all details
  57. #msg-template=
  58. # Set the output format. Available formats are text, parseable, colorized, json
  59. # and msvs (visual studio).You can also give a reporter class, eg
  60. # mypackage.mymodule.MyReporterClass.
  61. output-format=text
  62. # Tells whether to display a full report or only the messages
  63. reports=no
  64. # Activate the evaluation score.
  65. score=yes
  66. [REFACTORING]
  67. # Maximum number of nested blocks for function / method body
  68. max-nested-blocks=5
  69. [LOGGING]
  70. # Logging modules to check that the string format arguments are in logging
  71. # function parameter format
  72. logging-modules=logging
  73. [SPELLING]
  74. # Spelling dictionary name. Available dictionaries: none. To make it working
  75. # install python-enchant package.
  76. spelling-dict=
  77. # List of comma separated words that should not be checked.
  78. spelling-ignore-words=
  79. # A path to a file that contains private dictionary; one word per line.
  80. spelling-private-dict-file=
  81. # Tells whether to store unknown words to indicated private dictionary in
  82. # --spelling-private-dict-file option instead of raising a message.
  83. spelling-store-unknown-words=no
  84. [MISCELLANEOUS]
  85. # List of note tags to take in consideration, separated by a comma.
  86. # notes=FIXME,XXX,TODO
  87. notes=FIXME,XXX
  88. [TYPECHECK]
  89. # List of decorators that produce context managers, such as
  90. # contextlib.contextmanager. Add to this list to register other decorators that
  91. # produce valid context managers.
  92. contextmanager-decorators=contextlib.contextmanager
  93. # List of members which are set dynamically and missed by pylint inference
  94. # system, and so shouldn't trigger E1101 when accessed. Python regular
  95. # expressions are accepted.
  96. generated-members=
  97. # Tells whether missing members accessed in mixin class should be ignored. A
  98. # mixin class is detected if its name ends with "mixin" (case insensitive).
  99. ignore-mixin-members=yes
  100. # This flag controls whether pylint should warn about no-member and similar
  101. # checks whenever an opaque object is returned when inferring. The inference
  102. # can return multiple potential results while evaluating a Python object, but
  103. # some branches might not be evaluated, which results in partial inference. In
  104. # that case, it might be useful to still emit no-member and other checks for
  105. # the rest of the inferred objects.
  106. ignore-on-opaque-inference=yes
  107. # List of class names for which member attributes should not be checked (useful
  108. # for classes with dynamically set attributes). This supports the use of
  109. # qualified names.
  110. ignored-classes=optparse.Values,thread._local,_thread._local
  111. # List of module names for which member attributes should not be checked
  112. # (useful for modules/projects where namespaces are manipulated during runtime
  113. # and thus existing member attributes cannot be deduced by static analysis. It
  114. # supports qualified module names, as well as Unix pattern matching.
  115. ignored-modules=
  116. # Show a hint with possible names when a member name was not found. The aspect
  117. # of finding the hint is based on edit distance.
  118. missing-member-hint=yes
  119. # The minimum edit distance a name should have in order to be considered a
  120. # similar match for a missing member name.
  121. missing-member-hint-distance=1
  122. # The total number of similar names that should be taken in consideration when
  123. # showing a hint for a missing member.
  124. missing-member-max-choices=1
  125. [VARIABLES]
  126. # List of additional names supposed to be defined in builtins. Remember that
  127. # you should avoid to define new builtins when possible.
  128. additional-builtins=
  129. # Tells whether unused global variables should be treated as a violation.
  130. allow-global-unused-variables=yes
  131. # List of strings which can identify a callback function by name. A callback
  132. # name must start or end with one of those strings.
  133. callbacks=cb_,_cb
  134. # A regular expression matching the name of dummy variables (i.e. expectedly
  135. # not used).
  136. dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
  137. # Argument names that match this expression will be ignored. Default to name
  138. # with leading underscore
  139. ignored-argument-names=_.*|^ignored_|^unused_
  140. # Tells whether we should check for unused import in __init__ files.
  141. init-import=no
  142. # List of qualified module names which can have objects that can redefine
  143. # builtins.
  144. redefining-builtins-modules=six.moves,future.builtins
  145. [FORMAT]
  146. # Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
  147. # expected-line-ending-format=
  148. expected-line-ending-format=LF
  149. # Regexp for a line that is allowed to be longer than the limit.
  150. ignore-long-lines=^\s*(# )?<?https?://\S+>?$
  151. # Number of spaces of indent required inside a hanging or continued line.
  152. indent-after-paren=4
  153. # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
  154. # tab).
  155. indent-string=' '
  156. # Maximum number of characters on a single line.
  157. max-line-length=100
  158. # Maximum number of lines in a module
  159. max-module-lines=1000
  160. # List of optional constructs for which whitespace checking is disabled. `dict-
  161. # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
  162. # `trailing-comma` allows a space between comma and closing bracket: (a, ).
  163. # `empty-line` allows space-only lines.
  164. no-space-check=trailing-comma,dict-separator
  165. # Allow the body of a class to be on the same line as the declaration if body
  166. # contains single statement.
  167. single-line-class-stmt=no
  168. # Allow the body of an if to be on the same line as the test if there is no
  169. # else.
  170. single-line-if-stmt=no
  171. [SIMILARITIES]
  172. # Ignore comments when computing similarities.
  173. ignore-comments=yes
  174. # Ignore docstrings when computing similarities.
  175. ignore-docstrings=yes
  176. # Ignore imports when computing similarities.
  177. ignore-imports=no
  178. # Minimum lines number of a similarity.
  179. min-similarity-lines=4
  180. [BASIC]
  181. # Naming hint for argument names
  182. argument-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  183. # Regular expression matching correct argument names
  184. argument-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  185. # Naming hint for attribute names
  186. attr-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  187. # Regular expression matching correct attribute names
  188. attr-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  189. # Bad variable names which should always be refused, separated by a comma
  190. bad-names=foo,bar,baz,toto,tutu,tata
  191. # Naming hint for class attribute names
  192. class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
  193. # Regular expression matching correct class attribute names
  194. class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
  195. # Naming hint for class names
  196. # class-name-hint=[A-Z_][a-zA-Z0-9]+$
  197. class-name-hint=[A-Z_][a-zA-Z0-9_]+$
  198. # Regular expression matching correct class names
  199. # class-rgx=[A-Z_][a-zA-Z0-9]+$
  200. class-rgx=[A-Z_][a-zA-Z0-9_]+$
  201. # Naming hint for constant names
  202. const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
  203. # Regular expression matching correct constant names
  204. const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
  205. # Minimum line length for functions/classes that require docstrings, shorter
  206. # ones are exempt.
  207. docstring-min-length=-1
  208. # Naming hint for function names
  209. function-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  210. # Regular expression matching correct function names
  211. function-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  212. # Good variable names which should always be accepted, separated by a comma
  213. # good-names=i,j,k,ex,Run,_
  214. good-names=r,g,b,w,i,j,k,n,x,y,z,ex,ok,Run,_
  215. # Include a hint for the correct naming format with invalid-name
  216. include-naming-hint=no
  217. # Naming hint for inline iteration names
  218. inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
  219. # Regular expression matching correct inline iteration names
  220. inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
  221. # Naming hint for method names
  222. method-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  223. # Regular expression matching correct method names
  224. method-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  225. # Naming hint for module names
  226. module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
  227. # Regular expression matching correct module names
  228. module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
  229. # Colon-delimited sets of names that determine each other's naming style when
  230. # the name regexes allow several styles.
  231. name-group=
  232. # Regular expression which should only match function or class names that do
  233. # not require a docstring.
  234. no-docstring-rgx=^_
  235. # List of decorators that produce properties, such as abc.abstractproperty. Add
  236. # to this list to register other decorators that produce valid properties.
  237. property-classes=abc.abstractproperty
  238. # Naming hint for variable names
  239. variable-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  240. # Regular expression matching correct variable names
  241. variable-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
  242. [IMPORTS]
  243. # Allow wildcard imports from modules that define __all__.
  244. allow-wildcard-with-all=no
  245. # Analyse import fallback blocks. This can be used to support both Python 2 and
  246. # 3 compatible code, which means that the block might have code that exists
  247. # only in one or another interpreter, leading to false positives when analysed.
  248. analyse-fallback-blocks=no
  249. # Deprecated modules which should not be used, separated by a comma
  250. deprecated-modules=optparse,tkinter.tix
  251. # Create a graph of external dependencies in the given file (report RP0402 must
  252. # not be disabled)
  253. ext-import-graph=
  254. # Create a graph of every (i.e. internal and external) dependencies in the
  255. # given file (report RP0402 must not be disabled)
  256. import-graph=
  257. # Create a graph of internal dependencies in the given file (report RP0402 must
  258. # not be disabled)
  259. int-import-graph=
  260. # Force import order to recognize a module as part of the standard
  261. # compatibility libraries.
  262. known-standard-library=
  263. # Force import order to recognize a module as part of a third party library.
  264. known-third-party=enchant
  265. [CLASSES]
  266. # List of method names used to declare (i.e. assign) instance attributes.
  267. defining-attr-methods=__init__,__new__,setUp
  268. # List of member names, which should be excluded from the protected access
  269. # warning.
  270. exclude-protected=_asdict,_fields,_replace,_source,_make
  271. # List of valid names for the first argument in a class method.
  272. valid-classmethod-first-arg=cls
  273. # List of valid names for the first argument in a metaclass class method.
  274. valid-metaclass-classmethod-first-arg=mcs
  275. [DESIGN]
  276. # Maximum number of arguments for function / method
  277. max-args=5
  278. # Maximum number of attributes for a class (see R0902).
  279. # max-attributes=7
  280. max-attributes=11
  281. # Maximum number of boolean expressions in a if statement
  282. max-bool-expr=5
  283. # Maximum number of branch for function / method body
  284. max-branches=12
  285. # Maximum number of locals for function / method body
  286. max-locals=15
  287. # Maximum number of parents for a class (see R0901).
  288. max-parents=7
  289. # Maximum number of public methods for a class (see R0904).
  290. max-public-methods=20
  291. # Maximum number of return / yield for function / method body
  292. max-returns=6
  293. # Maximum number of statements in function / method body
  294. max-statements=50
  295. # Minimum number of public methods for a class (see R0903).
  296. min-public-methods=1
  297. [EXCEPTIONS]
  298. # Exceptions that will emit a warning when being caught. Defaults to
  299. # "Exception"
  300. overgeneral-exceptions=Exception