pylintrc 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. # Copyright (c) 2019, Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. # pylint configuration for the PyLint check in check_compliance.py.
  4. #
  5. # To run pylint manually with this configuration from the Zephyr repo, do
  6. #
  7. # pylint3 --rcfile=ci-tools/scripts/pylintrc <Python file>
  8. #
  9. # This command will check all scripts:
  10. #
  11. # pylint3 --rcfile=ci-tools/scripts/pylintrc $(git ls-files '*.py')
  12. [MASTER]
  13. # Use multiple processes
  14. jobs=0
  15. # Do not pickle collected data for comparisons
  16. persistent=no
  17. [REPORTS]
  18. # Only show messages, not full report
  19. reports=no
  20. # Disable score
  21. score=no
  22. [MESSAGES CONTROL]
  23. # Only enable specific (hopefully) uncontroversial warnings. Use
  24. # 'pylint3 --list-msgs' to list messages and their IDs.
  25. #
  26. # These might be nice to check too, but currently trigger false positives:
  27. #
  28. # no-member
  29. # arguments-differ
  30. # redefine-in-handler
  31. # abstract-method
  32. #
  33. # These might be too controversial:
  34. #
  35. # no-else-return
  36. # consider-using-get
  37. # redefined-builtin
  38. #
  39. # These tell you to use logger.warning("foo %d bar", 3) instead of e.g.
  40. # logger.warning("foo {} bar".format(3)), but it's not a clear win in all
  41. # cases. f-strings would be nicer too, and it's easier to convert from format()
  42. # to those.
  43. #
  44. # logging-not-lazy
  45. # logging-format-interpolation
  46. # logging-fstring-interpolation
  47. disable=all
  48. # Identifiers are in the same order as in 'pylint3 --list-msgs'. Entire
  49. # message "types" (~= severities) like F(atal), E(error),... are listed
  50. # first.
  51. enable=
  52. F, # atal
  53. empty-docstring,
  54. unneeded-not,
  55. singleton-comparison,
  56. misplaced-comparison-constant,
  57. unidiomatic-typecheck,
  58. consider-using-enumerate,
  59. consider-iterating-dictionary,
  60. bad-classmethod-argument,
  61. bad-mcs-method-argument,
  62. bad-mcs-classmethod-argument,
  63. single-string-used-for-slots,
  64. trailing-newlines,
  65. trailing-whitespace,
  66. missing-final-newline,
  67. superfluous-parens,
  68. mixed-line-endings,
  69. unexpected-line-ending-format,
  70. invalid-characters-in-docstring,
  71. useless-import-alias,
  72. len-as-condition,
  73. syntax-error,
  74. init-is-generator,
  75. return-in-init,
  76. function-redefined,
  77. not-in-loop,
  78. return-outside-function,
  79. yield-outside-function,
  80. nonexistent-operator,
  81. duplicate-argument-name,
  82. abstract-class-instantiated,
  83. bad-reversed-sequence,
  84. too-many-star-expressions,
  85. invalid-star-assignment-target,
  86. star-needs-assignment-target,
  87. nonlocal-and-global,
  88. continue-in-finally,
  89. nonlocal-without-binding,
  90. misplaced-format-function,
  91. method-hidden,
  92. access-member-before-definition,
  93. no-method-argument,
  94. no-self-argument,
  95. invalid-slots-object,
  96. assigning-non-slot,
  97. invalid-slots,
  98. inherit-non-class,
  99. inconsistent-mro,
  100. duplicate-bases,
  101. non-iterator-returned,
  102. unexpected-special-method-signature,
  103. invalid-length-returned,
  104. relative-beyond-top-level,
  105. used-before-assignment,
  106. undefined-variable,
  107. undefined-all-variable,
  108. invalid-all-object,
  109. no-name-in-module,
  110. unpacking-non-sequence,
  111. bad-except-order,
  112. raising-bad-type,
  113. bad-exception-context,
  114. misplaced-bare-raise,
  115. raising-non-exception,
  116. notimplemented-raised,
  117. catching-non-exception,
  118. bad-super-call,
  119. not-callable,
  120. assignment-from-no-return,
  121. no-value-for-parameter,
  122. too-many-function-args,
  123. unexpected-keyword-arg,
  124. redundant-keyword-arg,
  125. missing-kwoa,
  126. invalid-sequence-index,
  127. invalid-slice-index,
  128. assignment-from-none,
  129. not-context-manager,
  130. invalid-unary-operand-type,
  131. unsupported-binary-operation,
  132. repeated-keyword,
  133. not-an-iterable,
  134. not-a-mapping,
  135. unsupported-membership-test,
  136. unsubscriptable-object,
  137. unsupported-assignment-operation,
  138. unsupported-delete-operation,
  139. invalid-metaclass,
  140. unhashable-dict-key,
  141. logging-unsupported-format,
  142. logging-format-truncated,
  143. logging-too-many-args,
  144. logging-too-few-args,
  145. bad-format-character,
  146. truncated-format-string,
  147. mixed-format-string,
  148. format-needs-mapping,
  149. missing-format-string-key,
  150. too-many-format-args,
  151. too-few-format-args,
  152. bad-string-format-type,
  153. bad-str-strip-call,
  154. invalid-envvar-value,
  155. yield-inside-async-function,
  156. not-async-context-manager,
  157. useless-suppression,
  158. deprecated-pragma,
  159. use-symbolic-message-instead,
  160. literal-comparison,
  161. comparison-with-itself,
  162. no-self-use,
  163. no-classmethod-decorator,
  164. no-staticmethod-decorator,
  165. cyclic-import,
  166. duplicate-code,
  167. consider-merging-isinstance,
  168. simplifiable-if-statement,
  169. redefined-argument-from-local,
  170. trailing-comma-tuple,
  171. stop-iteration-return,
  172. useless-return,
  173. consider-swap-variables,
  174. consider-using-join,
  175. consider-using-in,
  176. chained-comparison,
  177. consider-using-dict-comprehension,
  178. consider-using-set-comprehension,
  179. simplifiable-if-expression,
  180. unreachable,
  181. pointless-statement,
  182. pointless-string-statement,
  183. expression-not-assigned,
  184. unnecessary-pass,
  185. unnecessary-lambda,
  186. duplicate-key,
  187. assign-to-new-keyword,
  188. useless-else-on-loop,
  189. confusing-with-statement,
  190. using-constant-test,
  191. comparison-with-callable,
  192. lost-exception,
  193. assert-on-tuple,
  194. bad-staticmethod-argument,
  195. super-init-not-called,
  196. non-parent-init-called,
  197. useless-super-delegation,
  198. unnecessary-semicolon,
  199. bad-indentation,
  200. mixed-indentation,
  201. deprecated-module,
  202. reimported,
  203. import-self,
  204. misplaced-future,
  205. global-variable-not-assigned,
  206. unused-import,
  207. unused-variable,
  208. undefined-loop-variable,
  209. unbalanced-tuple-unpacking,
  210. possibly-unused-variable,
  211. self-cls-assignment,
  212. bare-except,
  213. duplicate-except,
  214. try-except-raise,
  215. binary-op-exception,
  216. raising-format-tuple,
  217. wrong-exception-operation,
  218. keyword-arg-before-vararg,
  219. bad-format-string-key,
  220. unused-format-string-key,
  221. bad-format-string,
  222. unused-format-string-argument,
  223. format-combined-specification,
  224. missing-format-attribute,
  225. invalid-format-index,
  226. anomalous-backslash-in-string,
  227. anomalous-unicode-escape-in-string,
  228. bad-open-mode,
  229. redundant-unittest-assert,
  230. deprecated-method,
  231. bad-thread-instantiation,
  232. shallow-copy-environ,
  233. invalid-envvar-default,
  234. deprecated-string-function,
  235. deprecated-str-translate-call,
  236. deprecated-itertools-function,
  237. deprecated-types-field,
  238. [SIMILARITIES]
  239. # Minimum lines number of a similarity.
  240. min-similarity-lines=10
  241. # Ignore comments when computing similarities.
  242. ignore-comments=yes
  243. # Ignore docstrings when computing similarities.
  244. ignore-docstrings=yes
  245. # Ignore imports when computing similarities.
  246. ignore-imports=yes