pylintrc 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. [MASTER]
  2. # Specify a configuration file.
  3. #rcfile=
  4. # Python code to execute, usually for sys.path manipulation such as
  5. # pygtk.require().
  6. #init-hook=
  7. # Profiled execution.
  8. profile=no
  9. # Add files or directories to the blacklist. They should be base names, not
  10. # paths.
  11. ignore=CVS
  12. # Pickle collected data for later comparisons.
  13. persistent=yes
  14. # List of plugins (as comma separated values of python modules names) to load,
  15. # usually to register additional checkers.
  16. load-plugins=
  17. [MESSAGES CONTROL]
  18. # Enable the message, report, category or checker with the given id(s). You can
  19. # either give multiple identifier separated by comma (,) or put this option
  20. # multiple time.
  21. #enable=
  22. # Disable the message, report, category or checker with the given id(s). You
  23. # can either give multiple identifier separated by comma (,) or put this option
  24. # multiple time (only on the command line, not in the configuration file where
  25. # it should appear only once).
  26. # C0103: Invalid name "NN" (should match [a-z_][a-z0-9_]{2,30}$)
  27. # C0111: Missing docstring
  28. # C0302: Too many lines in module (NN)
  29. # R0902: Too many instance attributes (N/7)
  30. # R0903: Too few public methods (N/2)
  31. # R0904: Too many public methods (NN/20)
  32. # R0912: Too many branches (NN/12)
  33. # R0913: Too many arguments (N/5)
  34. # R0914: Too many local variables (NN/15)
  35. # R0915: Too many statements (NN/50)
  36. # W0141: Used builtin function 'map'
  37. # W0142: Used * or ** magic
  38. # W0232: Class has no __init__ method
  39. # W0511: TODO
  40. # W0603: Using the global statement
  41. #
  42. # These should be enabled eventually:
  43. # C0112: Empty docstring
  44. # C0301: Line too long (NN/80)
  45. # C0321: More than one statement on single line
  46. # C0322: Operator not preceded by a space
  47. # C0323: Operator not followed by a space
  48. # C0324: Comma not followed by a space
  49. # E0101: Explicit return in __init__
  50. # E0102: function already defined line NN
  51. # E1002: Use of super on an old style class
  52. # E1101: Instance of 'XX' has no 'YY' member
  53. # E1103: Instance of 'XX' has no 'XX' member (but some types could not be inferred)
  54. # E0602: Undefined variable 'XX'
  55. # F0401: Unable to import 'XX'
  56. # R0201: Method could be a function
  57. # R0801: Similar lines in N files
  58. # W0102: Dangerous default value {} as argument
  59. # W0104: Statement seems to have no effect
  60. # W0105: String statement has no effect
  61. # W0108: Lambda may not be necessary
  62. # W0201: Attribute 'XX' defined outside __init__
  63. # W0212: Access to a protected member XX of a client class
  64. # W0221: Arguments number differs from overridden method
  65. # W0223: Method 'XX' is abstract in class 'YY' but is not overridden
  66. # W0231: __init__ method from base class 'XX' is not called
  67. # W0301: Unnecessary semicolon
  68. # W0311: Bad indentation. Found NN spaces, expected NN
  69. # W0401: Wildcard import XX
  70. # W0402: Uses of a deprecated module 'string'
  71. # W0403: Relative import 'XX', should be 'YY.XX'
  72. # W0404: Reimport 'XX' (imported line NN)
  73. # W0601: Global variable 'XX' undefined at the module level
  74. # W0602: Using global for 'XX' but no assignment is done
  75. # W0611: Unused import pprint
  76. # W0612: Unused variable 'XX'
  77. # W0613: Unused argument 'XX'
  78. # W0614: Unused import XX from wildcard import
  79. # W0621: Redefining name 'XX' from outer scope (line NN)
  80. # W0622: Redefining built-in 'NN'
  81. # W0631: Using possibly undefined loop variable 'XX'
  82. # W0701: Raising a string exception
  83. # W0702: No exception type(s) specified
  84. disable=C0103,C0111,C0302,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0141,W0142,W0232,W0511,W0603,C0112,C0301,C0321,C0322,C0323,C0324,E0101,E0102,E1002,E1101,E1103,E0602,F0401,R0201,R0801,W0102,W0104,W0105,W0108,W0201,W0212,W0221,W0223,W0231,W0301,W0311,W0401,W0402,W0403,W0404,W0601,W0602,W0611,W0612,W0613,W0614,W0621,W0622,W0631,W0701,W0702
  85. [REPORTS]
  86. # Set the output format. Available formats are text, parseable, colorized, msvs
  87. # (visual studio) and html
  88. output-format=text
  89. # Include message's id in output
  90. include-ids=yes
  91. # Put messages in a separate file for each module / package specified on the
  92. # command line instead of printing them on stdout. Reports (if any) will be
  93. # written in a file name "pylint_global.[txt|html]".
  94. files-output=no
  95. # Tells whether to display a full report or only the messages
  96. reports=no
  97. # Python expression which should return a note less than 10 (10 is the highest
  98. # note). You have access to the variables errors warning, statement which
  99. # respectively contain the number of errors / warnings messages and the total
  100. # number of statements analyzed. This is used by the global evaluation report
  101. # (RP0004).
  102. evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
  103. # Add a comment according to your evaluation note. This is used by the global
  104. # evaluation report (RP0004).
  105. comment=no
  106. [VARIABLES]
  107. # Tells whether we should check for unused import in __init__ files.
  108. init-import=no
  109. # A regular expression matching the beginning of the name of dummy variables
  110. # (i.e. not used).
  111. dummy-variables-rgx=_|dummy
  112. # List of additional names supposed to be defined in builtins. Remember that
  113. # you should avoid to define new builtins when possible.
  114. additional-builtins=
  115. [TYPECHECK]
  116. # Tells whether missing members accessed in mixin class should be ignored. A
  117. # mixin class is detected if its name ends with "mixin" (case insensitive).
  118. ignore-mixin-members=yes
  119. # List of classes names for which member attributes should not be checked
  120. # (useful for classes with attributes dynamically set).
  121. ignored-classes=SQLObject
  122. # When zope mode is activated, add a predefined set of Zope acquired attributes
  123. # to generated-members.
  124. zope=no
  125. # List of members which are set dynamically and missed by pylint inference
  126. # system, and so shouldn't trigger E0201 when accessed. Python regular
  127. # expressions are accepted.
  128. generated-members=REQUEST,acl_users,aq_parent
  129. [MISCELLANEOUS]
  130. # List of note tags to take in consideration, separated by a comma.
  131. notes=FIXME,XXX,TODO
  132. [SIMILARITIES]
  133. # Minimum lines number of a similarity.
  134. min-similarity-lines=4
  135. # Ignore comments when computing similarities.
  136. ignore-comments=yes
  137. # Ignore docstrings when computing similarities.
  138. ignore-docstrings=yes
  139. [FORMAT]
  140. # Maximum number of characters on a single line.
  141. max-line-length=80
  142. # Maximum number of lines in a module
  143. max-module-lines=1000
  144. # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
  145. # tab).
  146. indent-string=' '
  147. [BASIC]
  148. # Required attributes for module, separated by a comma
  149. required-attributes=
  150. # List of builtins function names that should not be used, separated by a comma
  151. bad-functions=map,filter,apply,input
  152. # Regular expression which should only match correct module names
  153. module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
  154. # Regular expression which should only match correct module level names
  155. const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
  156. # Regular expression which should only match correct class names
  157. class-rgx=[A-Z_][a-zA-Z0-9]+$
  158. # Regular expression which should only match correct function names
  159. function-rgx=[a-z_][a-z0-9_]{2,30}$
  160. # Regular expression which should only match correct method names
  161. method-rgx=[a-z_][a-z0-9_]{2,30}$
  162. # Regular expression which should only match correct instance attribute names
  163. attr-rgx=[a-z_][a-z0-9_]{2,30}$
  164. # Regular expression which should only match correct argument names
  165. argument-rgx=[a-z_][a-z0-9_]{2,30}$
  166. # Regular expression which should only match correct variable names
  167. variable-rgx=[a-z_][a-z0-9_]{2,30}$
  168. # Regular expression which should only match correct list comprehension /
  169. # generator expression variable names
  170. inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
  171. # Good variable names which should always be accepted, separated by a comma
  172. good-names=i,j,k,ex,Run,_
  173. # Bad variable names which should always be refused, separated by a comma
  174. bad-names=foo,bar,baz,toto,tutu,tata
  175. # Regular expression which should only match functions or classes name which do
  176. # not require a docstring
  177. no-docstring-rgx=__.*__
  178. [DESIGN]
  179. # Maximum number of arguments for function / method
  180. max-args=5
  181. # Argument names that match this expression will be ignored. Default to name
  182. # with leading underscore
  183. ignored-argument-names=_.*
  184. # Maximum number of locals for function / method body
  185. max-locals=15
  186. # Maximum number of return / yield for function / method body
  187. max-returns=6
  188. # Maximum number of branch for function / method body
  189. max-branchs=12
  190. # Maximum number of statements in function / method body
  191. max-statements=50
  192. # Maximum number of parents for a class (see R0901).
  193. max-parents=7
  194. # Maximum number of attributes for a class (see R0902).
  195. max-attributes=7
  196. # Minimum number of public methods for a class (see R0903).
  197. min-public-methods=2
  198. # Maximum number of public methods for a class (see R0904).
  199. max-public-methods=20
  200. [CLASSES]
  201. # List of interface methods to ignore, separated by a comma. This is used for
  202. # instance to not check methods defines in Zope's Interface base class.
  203. ignore-iface-methods=isImplementedBy,deferred,extends,names,namesAndDescriptions,queryDescriptionFor,getBases,getDescriptionFor,getDoc,getName,getTaggedValue,getTaggedValueTags,isEqualOrExtendedBy,setTaggedValue,isImplementedByInstancesOf,adaptWith,is_implemented_by
  204. # List of method names used to declare (i.e. assign) instance attributes.
  205. defining-attr-methods=__init__,__new__,setUp
  206. # List of valid names for the first argument in a class method.
  207. valid-classmethod-first-arg=cls
  208. [IMPORTS]
  209. # Deprecated modules which should not be used, separated by a comma
  210. deprecated-modules=regsub,string,TERMIOS,Bastion,rexec
  211. # Create a graph of every (i.e. internal and external) dependencies in the
  212. # given file (report RP0402 must not be disabled)
  213. import-graph=
  214. # Create a graph of external dependencies in the given file (report RP0402 must
  215. # not be disabled)
  216. ext-import-graph=
  217. # Create a graph of internal dependencies in the given file (report RP0402 must
  218. # not be disabled)
  219. int-import-graph=
  220. [EXCEPTIONS]
  221. # Exceptions that will emit a warning when being caught. Defaults to
  222. # "Exception"
  223. overgeneral-exceptions=Exception