.pylintrc 661 B

1234567891011121314151617181920212223
  1. # pylintrc for Desktop.
  2. #
  3. # "pylint --generate-rcfile" generates the defaults;
  4. # this file encodes deviations from those defaults.
  5. [FORMAT]
  6. # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
  7. # tab).
  8. indent-string=' '
  9. # Maximum number of characters on a single line.
  10. max-line-length=100
  11. # Good variable names which should always be accepted, separated by a comma
  12. # Defaults + "f,x,k,v"
  13. good-names=i,j,k,ex,Run,_,f,x,k,v
  14. # Regular expression which should only match correct list comprehension /
  15. # generator expression variable names
  16. inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
  17. ignored-classes=SQLObject,Config,BoundConfig,ConfigSection