 243ab15b85
			
		
	
	
		243ab15b85
		
	
	
	
	
		
			
			The better implementation of a224297. Fixes ability to reorder tag aliases, especially - the ability to change the tag's primary name after it was created. Until now, both of these scenarios needed sad workarounds on the user part.
		
			
				
	
	
		
			37 lines
		
	
	
		
			629 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			629 B
		
	
	
	
		
			INI
		
	
	
	
	
	
| [basic]
 | |
| function-rgx=^_?[a-z_][a-z0-9_]{2,}$|^test_
 | |
| method-rgx=^[a-z_][a-z0-9_]{2,}$|^test_
 | |
| const-rgx=^[A-Z_]+$|^_[a-zA-Z_]*$
 | |
| good-names=ex,_,logger,i
 | |
| 
 | |
| [variables]
 | |
| dummy-variables-rgx=_|dummy
 | |
| 
 | |
| [format]
 | |
| max-line-length=79
 | |
| 
 | |
| [messages control]
 | |
| reports=no
 | |
| disable=
 | |
|     # we're not java
 | |
|     missing-docstring,
 | |
| 
 | |
|     # covered better by pycodestyle
 | |
|     bad-continuation,
 | |
| 
 | |
|     # we're adults
 | |
|     redefined-builtin,
 | |
|     duplicate-code,
 | |
|     too-many-return-statements,
 | |
|     too-many-arguments,
 | |
| 
 | |
|     # plain stupid
 | |
|     no-self-use,
 | |
|     too-few-public-methods
 | |
| 
 | |
| [typecheck]
 | |
| generated-members=add|add_all
 | |
| 
 | |
| [similarities]
 | |
| min-similarity-lines=5
 |