Skip to content
Snippets Groups Projects
.pylintrc 413 B
Newer Older
  • Learn to ignore specific revisions
  • [FORMAT]
    good-names=e,f,i,x,s
    max-locals=20
    
    [MESSAGES CONTROL]
    disable=
        fixme,
        invalid-name,
    
        missing-docstring,
        protected-access,
    
        abstract-method,
        wrong-import-position,
        catching-non-exception,
        cell-var-from-loop,
        locally-disabled,
    
    Julien (jvoisin) Voisin's avatar
    Julien (jvoisin) Voisin committed
    		raise-missing-from,
    
        invalid-sequence-index,  # pylint doesn't like things like `Tuple[int, bytes]` in type annotation