pylintrc 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. [MASTER]
  2. # Add files or directories matching the regex patterns to the ignore list.
  3. # The regex matches against base names, not paths.
  4. ignore-patterns=error.py,
  5. expr.py,
  6. parser.py,
  7. schema.py,
  8. [MESSAGES CONTROL]
  9. # Disable the message, report, category or checker with the given id(s). You
  10. # can either give multiple identifiers separated by comma (,) or put this
  11. # option multiple times (only on the command line, not in the configuration
  12. # file where it should appear only once). You can also use "--disable=all" to
  13. # disable everything first and then reenable specific checks. For example, if
  14. # you want to run only the similarities checker, you can use "--disable=all
  15. # --enable=similarities". If you want to run only the classes checker, but have
  16. # no Warning level messages displayed, use "--disable=all --enable=classes
  17. # --disable=W".
  18. disable=fixme,
  19. missing-docstring,
  20. too-many-arguments,
  21. too-many-branches,
  22. too-many-statements,
  23. too-many-instance-attributes,
  24. [REPORTS]
  25. [REFACTORING]
  26. [MISCELLANEOUS]
  27. [LOGGING]
  28. [BASIC]
  29. # Good variable names which should always be accepted, separated by a comma.
  30. good-names=i,
  31. j,
  32. k,
  33. ex,
  34. Run,
  35. _,
  36. fp, # fp = open(...)
  37. fd, # fd = os.open(...)
  38. [VARIABLES]
  39. [STRING]
  40. [SPELLING]
  41. [FORMAT]
  42. [SIMILARITIES]
  43. # Ignore import statements themselves when computing similarities.
  44. ignore-imports=yes
  45. [TYPECHECK]
  46. [CLASSES]
  47. [IMPORTS]
  48. [DESIGN]
  49. [EXCEPTIONS]