lint: Fix line length
Some checks are pending
Deploy snapshot builds / deploy-release-snapshot (push) Waiting to run

This commit is contained in:
Kumi 2025-03-22 21:32:00 +01:00
parent b53f4c214d
commit 0feabc4f02
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -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