aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/.pylintrc
blob: 86cac0193f6da46823a3e42f29ef1dbe7b132b8c (plain) (tree)
1
2
3
4
5
6
7
8
9

                  
                                                                                                        


       
              
                
          
           
                      
                                     
                                           
                                 
                                       
                             
                                   
                               
                                     
                                   
                                         
                                                    
                                                          
                                                           
                                                                 
                                   
                                         
                                   
                                         
                   
                       
[MESSAGES CONTROL]

disable=missing-docstring,too-many-public-methods,too-few-public-methods,multiple-imports,duplicate-code

[BASIC]

bad-functions=
good-names=i,j,k
bad-names=
name-group=
include-naming-hint=no
inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
method-rgx=[a-z_][a-z0-9_]{2,30}$
method-name-hint=[a-z_][a-z0-9_]{2,30}$
class-rgx=[A-Z_][a-zA-Z0-9]+$
class-name-hint=[A-Z_][a-zA-Z0-9]+$
attr-rgx=[a-z_][a-z0-9_]{0,30}$
attr-name-hint=[a-z_][a-z0-9_]{0,30}$
function-rgx=[a-z_][a-z0-9_]{2,30}$
function-name-hint=[a-z_][a-z0-9_]{2,30}$
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{1,30}|(__.*__))$
class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{1,30}|(__.*__))$
variable-rgx=[a-z_][a-z0-9_]{0,30}$
variable-name-hint=[a-z_][a-z0-9_]{0,30}$
argument-rgx=[a-z_][a-z0-9_]{0,30}$
argument-name-hint=[a-z_][a-z0-9_]{0,30}$
no-docstring-rgx=^_
docstring-min-length=-1