Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 896ca556 authored by Rafael Tonholo's avatar Rafael Tonholo
Browse files

fix(lint): ignore MissingQuantity for...

fix(lint): ignore MissingQuantity for account_setup_options_email_display_count_messages and settings_import_password_prompt as they aren't needed in this situation
chore(lint): added android lint baseline
parent d895e4a8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ internal fun CommonExtension<*, *, *, *, *, *>.configureSharedConfig(project: Pr
        abortOnError = true
        checkDependencies = true
        lintConfig = project.file("${project.rootProject.projectDir}/config/lint/lint.xml")
        baseline = project.file("${project.rootProject.projectDir}/config/lint/android-lint-baseline.xml")
    }

    testOptions {
+24 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<issues format="6" by="lint 8.11.1" type="baseline" client="gradle" dependencies="true" name="AGP (8.11.1)" variant="all" version="8.11.1">
    <issue
        id="MissingQuantity"
        message="For locale &quot;iw&quot; (Hebrew) the following quantity should also be defined: `many` (e.g. &quot;20 שנה&quot;)"
        errorLine1="    &lt;plurals name=&quot;account_setup_options_email_display_count_messages&quot;>"
        errorLine2="    ^">
        <location
            file="src/main/res/values-iw/strings.xml"
            line="46"
            column="5"/>
    </issue>

    <issue
        id="MissingQuantity"
        message="For locale &quot;iw&quot; (Hebrew) the following quantity should also be defined: `many` (e.g. &quot;20 שנה&quot;)"
        errorLine1="    &lt;plurals name=&quot;settings_import_password_prompt&quot;>"
        errorLine2="    ^">
        <location
            file="src/main/res/values-iw/strings.xml"
            line="35"
            column="5"/>
    </issue>
</issues>