github.com/aws-cloudformation/cloudformation-cli-go-plugin@v1.2.0/.pylintrc (about)

     1  [MASTER]
     2  
     3  ignore=CVS,models.py,handlers.py,hook_models.py,hook_handlers.py,target_model.py
     4  jobs=1
     5  persistent=yes
     6  
     7  [MESSAGES CONTROL]
     8  
     9  disable=
    10      missing-docstring,          # not everything needs a docstring
    11      fixme,                      # work in progress
    12      bad-continuation,           # clashes with black
    13      too-few-public-methods,     # triggers when inheriting
    14      ungrouped-imports,          # clashes with isort
    15      duplicate-code,             # broken, setup.py
    16      wrong-import-order,         # isort has precedence
    17  
    18  [BASIC]
    19  
    20  good-names=e,ex,f,fp,i,j,k,v,n,_
    21  
    22  [FORMAT]
    23  
    24  indent-string='    '
    25  max-line-length=88