 4b84d87449
			
		
	
	
		4b84d87449
		
	
	
	
	
		
			
			The changes to console_socket.py and machine.py are to cleanup for pylint and flake8. Signed-off-by: Robert Foley <robert.foley@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20200717203041.9867-2-robert.foley@linaro.org> Message-Id: <20200724064509.331-15-alex.bennee@linaro.org>
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
| [MASTER]
 | |
| 
 | |
| [MESSAGES CONTROL]
 | |
| 
 | |
| # Disable the message, report, category or checker with the given id(s). You
 | |
| # can either give multiple identifiers separated by comma (,) or put this
 | |
| # option multiple times (only on the command line, not in the configuration
 | |
| # file where it should appear only once). You can also use "--disable=all" to
 | |
| # disable everything first and then reenable specific checks. For example, if
 | |
| # you want to run only the similarities checker, you can use "--disable=all
 | |
| # --enable=similarities". If you want to run only the classes checker, but have
 | |
| # no Warning level messages displayed, use "--disable=all --enable=classes
 | |
| # --disable=W".
 | |
| disable=too-many-arguments,
 | |
|         too-many-instance-attributes,
 | |
|         too-many-public-methods,
 | |
| 
 | |
| [REPORTS]
 | |
| 
 | |
| [REFACTORING]
 | |
| 
 | |
| [MISCELLANEOUS]
 | |
| 
 | |
| [LOGGING]
 | |
| 
 | |
| [BASIC]
 | |
| 
 | |
| # Good variable names which should always be accepted, separated by a comma.
 | |
| good-names=i,
 | |
|            j,
 | |
|            k,
 | |
|            ex,
 | |
|            Run,
 | |
|            _,
 | |
|            fd,
 | |
|            c,
 | |
| [VARIABLES]
 | |
| 
 | |
| [STRING]
 | |
| 
 | |
| [SPELLING]
 | |
| 
 | |
| [FORMAT]
 | |
| 
 | |
| [SIMILARITIES]
 | |
| 
 | |
| # Ignore imports when computing similarities.
 | |
| ignore-imports=yes
 | |
| 
 | |
| [TYPECHECK]
 | |
| 
 | |
| [CLASSES]
 | |
| 
 | |
| [IMPORTS]
 | |
| 
 | |
| [DESIGN]
 | |
| 
 | |
| [EXCEPTIONS]
 |