0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-19 19:52:14 +02:00

Ignore code style and lint issues in :ui-utils:ItemTouchHelper and :ui-utils:LinearLayoutManager

This commit is contained in:
cketti 2024-05-28 18:44:50 +02:00
parent a760dffb9f
commit 3ad42b7b9f
3 changed files with 9 additions and 0 deletions

View File

@ -44,4 +44,6 @@ val defaultExcludes = listOf(
"**/build/**",
".github/**",
"gradle/**",
"**/app/k9mail/ui/utils/itemtouchhelper/**",
"**/app/k9mail/ui/utils/linearlayoutmanager/**",
)

View File

@ -14,6 +14,8 @@ configure<SpotlessExtension> {
"**/build/",
"**/resources/",
"plugins/openpgp-api-lib/",
"ui-utils/ItemTouchHelper/",
"ui-utils/LinearLayoutManager/",
)
}
kotlinGradle {

View File

@ -4,4 +4,9 @@
<issue id="MissingQuantity" severity="informational" />
<issue id="ExtraTranslation" severity="warning" />
<issue id="ImpliedQuantity" severity="warning" />
<issue id="all">
<ignore path="**/ui-utils/ItemTouchHelper/**"/>
<ignore path="**/ui-utils/LinearLayoutManager/**"/>
</issue>
</lint>