lint: Fix line length
Some checks are pending
Deploy snapshot builds / deploy-release-snapshot (push) Waiting to run
Some checks are pending
Deploy snapshot builds / deploy-release-snapshot (push) Waiting to run
This commit is contained in:
parent
b53f4c214d
commit
0feabc4f02
1 changed files with 2 additions and 1 deletions
|
@ -114,7 +114,8 @@ internal class FormField(
|
|||
private val List<String>.anyMatchesFieldInfo
|
||||
get() = any { fieldId.contains(it) || hint.contains(it) || htmlName.contains(it) }
|
||||
|
||||
val autofillId: AutofillId = requireNotNull(node.autofillId) { "Node is missing required autofillId" }
|
||||
val autofillId: AutofillId =
|
||||
requireNotNull(node.autofillId) { "Node is missing required autofillId" }
|
||||
|
||||
// Information for heuristics and exclusion rules based only on the current field
|
||||
private val htmlId = node.htmlInfo?.attributes?.firstOrNull { it.first == "id" }?.second
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue