File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
detectors/src/main/kotlin/com/serchinastico/lin/detectors Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,13 @@ class LinIssueRegistry : IssueRegistry() {
14
14
override val issues: List <Issue > = listOf (
15
15
NoDataFrameworksFromAndroidClassDetector .issue,
16
16
NoElseInSwitchWithEnumOrSealedDetector .issue,
17
+ NoFindViewByIdCallsDetector .issue,
18
+ NoMoreThanOneDateInstanceDetector .issue,
19
+ NoMoreThanOneGsonInstanceDetector .issue,
17
20
NoPrintStackTraceCallsDetector .issue,
18
21
NoPublicViewPropertiesDetector .issue,
19
22
NoSetOnClickListenerCallsDetector .issue,
20
- NoMoreThanOneGsonInstanceDetector .issue,
21
- NoMoreThanOneDateInstanceDetector .issue,
22
- OnlyConstantsInTypeOrFileDetector .issue
23
+ OnlyConstantsInTypeOrFileDetector .issue,
24
+ WrongSyntheticViewReferenceDetector .issue
23
25
)
24
26
}
You can’t perform that action at this time.
0 commit comments