mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 12:03:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			659 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			659 B
		
	
	
	
		
			INI
		
	
	
	
	
	
| [pycodestyle]
 | |
| ignore =
 | |
|     # These rules are ignored for the reasons explained in the comments.
 | |
|     # See https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes for
 | |
|     # error code definitions.
 | |
| 
 | |
|     # All formatting is handled by Black.
 | |
|     E1,
 | |
|     E2,
 | |
|     E3,
 | |
|     E401,
 | |
|     E5,
 | |
|     E701,
 | |
|     E702,
 | |
|     E703,
 | |
|     E704,
 | |
|     W1,
 | |
|     W2,
 | |
|     W3,
 | |
|     W5,
 | |
| 
 | |
|     # "module level import not at top of file"
 | |
|     # Most of these are there for valid reasons, though there might be a
 | |
|     # few that could be eliminated.
 | |
|     E402,
 | |
| 
 | |
|     # "do not assign a lambda expression, use a def"
 | |
|     # Fixing these would probably reduce readability in most cases.
 | |
|     E731,
 |