File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
extension-style-lint-rules/src/main/java/com/mapbox/maps/lint/style Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 33Mapbox welcomes participation and contributions from everyone.
44
55# main
6+ # 11.8.0
7+ ## Bug fixes 🐞
8+ * Disable false-positive lint error "Incorrect number of expressions".
69
710# 11.8.0-rc.1 October 23, 2024
811## Bug fixes 🐞
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ package com.mapbox.maps.lint.style
22
33import com.android.tools.lint.client.api.IssueRegistry
44import com.android.tools.lint.client.api.Vendor
5- import com.mapbox.maps.lint.style.expressions.IllegalNumberOfArgumentsDetector
65import com.mapbox.maps.lint.style.expressions.UnusedLiteralDetector
76
87class StyleIssueRegistry : IssueRegistry () {
98
109 override val issues = listOf (
1110 // Expression issues
1211 UnusedLiteralDetector .ISSUE ,
13- IllegalNumberOfArgumentsDetector .ISSUE ,
12+ // TODO revisit this later; perhaps when we bump to AGP 8 and / or bump some related deps
13+ // IllegalNumberOfArgumentsDetector.ISSUE,
1414 // Style DSL issues
1515 UnusedStyleDslDetector .ISSUE ,
1616 )
You can’t perform that action at this time.
0 commit comments