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.

88 lines
2.5 KiB

  1. [MASTER]
  2. load-plugins=pylint_odoo
  3. score=n
  4. [ODOOLINT]
  5. readme_template_url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst"
  6. manifest_required_authors=Odoo Community Association (OCA)
  7. manifest_required_keys=license
  8. manifest_deprecated_keys=description,active
  9. license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
  10. valid_odoo_versions=13.0
  11. [MESSAGES CONTROL]
  12. disable=all
  13. # This .pylintrc contains optional AND mandatory checks and is meant to be
  14. # loaded in an IDE to have it check everything, in the hope this will make
  15. # optional checks more visible to contributors who otherwise never look at a
  16. # green travis to see optional checks that failed.
  17. # .pylintrc-mandatory containing only mandatory checks is used the pre-commit
  18. # config as a blocking check.
  19. enable=anomalous-backslash-in-string,
  20. api-one-deprecated,
  21. api-one-multi-together,
  22. assignment-from-none,
  23. attribute-deprecated,
  24. class-camelcase,
  25. dangerous-default-value,
  26. dangerous-view-replace-wo-priority,
  27. development-status-allowed,
  28. duplicate-id-csv,
  29. duplicate-key,
  30. duplicate-xml-fields,
  31. duplicate-xml-record-id,
  32. eval-referenced,
  33. eval-used,
  34. incoherent-interpreter-exec-perm,
  35. license-allowed,
  36. manifest-author-string,
  37. manifest-deprecated-key,
  38. manifest-required-author,
  39. manifest-required-key,
  40. manifest-version-format,
  41. method-compute,
  42. method-inverse,
  43. method-required-super,
  44. method-search,
  45. missing-import-error,
  46. missing-manifest-dependency,
  47. openerp-exception-warning,
  48. pointless-statement,
  49. pointless-string-statement,
  50. print-used,
  51. redundant-keyword-arg,
  52. redundant-modulename-xml,
  53. reimported,
  54. relative-import,
  55. return-in-init,
  56. rst-syntax-error,
  57. sql-injection,
  58. too-few-format-args,
  59. translation-field,
  60. translation-required,
  61. unreachable,
  62. use-vim-comment,
  63. wrong-tabs-instead-of-spaces,
  64. xml-syntax-error,
  65. # messages that do not cause the lint step to fail
  66. consider-merging-classes-inherited,
  67. create-user-wo-reset-password,
  68. dangerous-filter-wo-user,
  69. deprecated-module,
  70. file-not-used,
  71. invalid-commit,
  72. missing-newline-extrafiles,
  73. missing-readme,
  74. no-utf8-coding-comment,
  75. odoo-addons-relative-import,
  76. old-api7-method-defined,
  77. redefined-builtin,
  78. too-complex,
  79. unnecessary-utf8-coding-comment
  80. [REPORTS]
  81. msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}
  82. output-format=colorized
  83. reports=no