Skip to content
Snippets Groups Projects

feat: Allow rules to be disabled by default.

Merged loqs requested to merge (removed):disabled-rules into master
1 unresolved thread
Files
2
+ 2
0
@@ -13,6 +13,8 @@ and how they are meant to be used.
class AbstractRule(object):
"The parent class of all rules"
enable: bool = True
def __init__(self):
self.errors: list[tuple[str, tuple[Any, ...]]] = []
self.warnings: list[tuple[str, tuple[Any, ...]]] = []
Loading