You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ Lint rules for using [Grumpy](https://github.com/necodeIT/grumpy) architecture c
9
9
|[must_call_in_constructor](#must_call_in_constructor)| Require constructors to call methods annotated with @mustCallInConstructor on supertypes or mixins. | ERROR | ✅ | 3 |
10
10
|[abstract_classes_should_set_log_group](#abstract_classes_should_set_log_group)| Abstract classes using LogMixin must override group with their class name, or append to super.group. | ERROR | ✅ | 1 |
11
11
|[concrete_classes_should_set_log_tag](#concrete_classes_should_set_log_tag)| Concrete classes using LogMixin must override logTag with their class name. | ERROR | ✅ | 1 |
12
+
|[base_class](#base_class)| Subclasses of classes annotated with BaseClass must follow layer, naming, and file layout rules. | WARNING | ❌ | 6 |
12
13
13
14
14
15
@@ -89,3 +90,30 @@ class MyConcreteClass with LogMixin {
89
90
90
91
```
91
92
93
+
94
+
95
+
96
+
### base_class
97
+
98
+
Subclasses of classes annotated with BaseClass must follow layer, naming, and file layout rules.
0 commit comments