Disable too-many/too-few pylint checks
Enforcing pylint standards and default for our test code seems counter-productive. Since most of the newly added code are tests or is test-related, encountering these checks rarely make us refactor the code in other ways and we just disable these checks individually. Code that is too complex or convoluted will be pointed out in reviews anyways.
This commit is contained in:
@@ -24,9 +24,6 @@ from hashlib import sha256
|
||||
class State:
|
||||
"""Class that holds state of the TSAN parser."""
|
||||
|
||||
# pylint: disable=too-many-instance-attributes
|
||||
# pylint: disable=too-few-public-methods
|
||||
|
||||
inside = False
|
||||
block = ""
|
||||
last_line = None
|
||||
|
||||
Reference in New Issue
Block a user