Disable pylint check for too many local variables
Reasons: 1) There is already check for maximum number of statements in function. So short functions are enforced by different check. 2) It might lead to bad practices. When developer have code with many well named variables and see this message, might remove variables and use its values directly. Then we will lose documentation included in variable names.
Loading
Please sign in to comment