.pylintrc 636 B

123456789101112131415161718192021222324252627282930
  1. [MESSAGES CONTROL]
  2. disable=
  3. invalid-name
  4. # missing-docstring,
  5. # too-many-instance-attributes,
  6. # too-few-public-methods,
  7. # no-self-use,
  8. # fixme,
  9. # unused-argument,
  10. # locally-disabled,
  11. # no-else-return,
  12. # too-many-locals,
  13. # protected-access,
  14. # broad-except,
  15. # wrong-import-position,
  16. # too-many-arguments,
  17. # unused-variable,
  18. # too-many-branches,
  19. # len-as-condition,
  20. # wrong-import-order,
  21. # too-many-nested-blocks,
  22. # too-many-return-statements
  23. # generated-members=sys.stdout.buffer,sys.stderr.buffer
  24. # W0108: unneccesary lambda
  25. # W0511: FIXME
  26. # W0613: unused arguments
  27. # disable=W0511,W0613,W0108