.pylintrc 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. [MASTER]
  2. persistent=no
  3. ignore=tests
  4. extension-pkg-whitelist=lxml.etree
  5. [MESSAGES CONTROL]
  6. # abstract-class-little-used: see http://www.logilab.org/ticket/111138
  7. # disabled to keep python2 compat:
  8. # - useless-object-inheritance
  9. # - consider-using-set-comprehension
  10. # - consider-using-dict-comprehension
  11. # - not-an-iterable
  12. disable=
  13. bad-continuation,
  14. raising-format-tuple,
  15. raise-missing-from,
  16. import-outside-toplevel,
  17. inconsistent-return-statements,
  18. duplicate-code,
  19. fixme,
  20. locally-disabled,
  21. locally-enabled,
  22. useless-object-inheritance,
  23. consider-using-set-comprehension,
  24. consider-using-dict-comprehension,
  25. not-an-iterable
  26. [REPORTS]
  27. # Set the output format. Available formats are text, parseable, colorized, msvs
  28. # (visual studio) and html
  29. output-format=colorized
  30. #files-output=no
  31. reports=yes
  32. [TYPECHECK]
  33. ignored-classes=dbus,SystemBus,SessionBus
  34. [BASIC]
  35. # List of builtins function names that should not be used, separated by a comma
  36. #bad-functions=filter,apply,input
  37. # Regular expression which should only match correct module names
  38. module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
  39. # Regular expression which should only match correct module level names
  40. const-rgx=(([A-Za-z_][A-Za-z0-9_]*)|(__.*__))$
  41. # Regular expression which should only match correct class names
  42. class-rgx=([A-Z_][a-zA-Z0-9]+|TC_\d\d_[a-zA-Z0-9_]+)$
  43. # Regular expression which should only match correct function names
  44. function-rgx=[a-z_][a-z0-9_]{2,30}$
  45. # Regular expression which should only match correct method names
  46. method-rgx=[a-z_][a-z0-9_]{2,30}$
  47. # Regular expression which should only match correct instance attribute names
  48. attr-rgx=[a-z_][a-z0-9_]{2,30}$
  49. # Regular expression which should only match correct argument names
  50. argument-rgx=[a-z_][a-z0-9_]{2,30}$
  51. # Regular expression which should only match correct variable names
  52. variable-rgx=[a-z_][a-z0-9_]{2,30}$
  53. # Regular expression which should only match correct list comprehension /
  54. # generator expression variable names
  55. inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
  56. # Good variable names which should always be accepted, separated by a comma
  57. good-names=e,i,j,k,m,p,rw,ex,Run,_,log,vm,ip,fd,fh
  58. # Bad variable names which should always be refused, separated by a comma
  59. bad-names=foo,bar,baz,toto,tutu,tata
  60. # Regular expression which should only match functions or classes name which do
  61. # not require a docstring
  62. no-docstring-rgx=__.*__
  63. [MISCELLANEOUS]
  64. # List of note tags to take in consideration, separated by a comma.
  65. notes=FIXME,FIX,XXX,TODO
  66. [FORMAT]
  67. # Maximum number of characters on a single line.
  68. max-line-length=80
  69. # Maximum number of lines in a module
  70. max-module-lines=3000
  71. # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
  72. # tab).
  73. indent-string=' '
  74. [VARIABLES]
  75. # Tells whether we should check for unused import in __init__ files.
  76. init-import=no
  77. # A regular expression matching the beginning of the name of dummy variables
  78. # (i.e. not used).
  79. dummy-variables-rgx=_|dummy
  80. [SIMILARITIES]
  81. # Minimum lines number of a similarity.
  82. min-similarity-lines=4
  83. # Ignore comments when computing similarities.
  84. ignore-comments=yes
  85. # Ignore docstrings when computing similarities.
  86. ignore-docstrings=yes
  87. [CLASSES]
  88. # List of method names used to declare (i.e. assign) instance attributes.
  89. defining-attr-methods=__init__,__new__,setUp
  90. # List of valid names for the first argument in a class method.
  91. valid-classmethod-first-arg=cls
  92. [IMPORTS]
  93. # Deprecated modules which should not be used, separated by a comma
  94. deprecated-modules=regsub,TERMIOS,Bastion,rexec
  95. # Create a graph of every (i.e. internal and external) dependencies in the
  96. # given file (report RP0402 must not be disabled)
  97. import-graph=
  98. # Create a graph of external dependencies in the given file (report RP0402 must
  99. # not be disabled)
  100. ext-import-graph=
  101. # Create a graph of internal dependencies in the given file (report RP0402 must
  102. # not be disabled)
  103. int-import-graph=
  104. ignored-modules=dnf
  105. [DESIGN]
  106. # Maximum number of arguments for function / method
  107. max-args=35
  108. # Argument names that match this expression will be ignored. Default to name
  109. # with leading underscore
  110. ignored-argument-names=_.*
  111. # Maximum number of locals for function / method body
  112. # Let's have max-args + 5
  113. max-locals=40
  114. # Maximum number of return / yield for function / method body
  115. max-returns=6
  116. # Maximum number of branch for function / method body
  117. # 4x the default value
  118. max-branches=48
  119. # Maximum number of statements in function / method body
  120. # Double default
  121. max-statements=100
  122. # Maximum number of parents for a class (see R0901).
  123. max-parents=7
  124. # Maximum number of attributes for a class (see R0902).
  125. max-attributes=15
  126. # Minimum number of public methods for a class (see R0903).
  127. min-public-methods=2
  128. # Maximum number of public methods for a class (see R0904).
  129. max-public-methods=100
  130. [EXCEPTIONS]
  131. # Exceptions that will emit a warning when being caught. Defaults to
  132. # "Exception"
  133. overgeneral-exceptions=Exception,EnvironmentError
  134. # vim: ft=conf