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:
Nicki Křížek
2024-10-14 14:44:06 +02:00
parent d7fab54393
commit 7639c58c48
14 changed files with 16 additions and 35 deletions

View File

@@ -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