mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 05:35:39 +03:00
c35873f5dc
* added log search in logs browser * added logs browser view model test * added universal async filtering utility * refactored async runner and added manual runner * migrated logs browser to Android DataBinding and Kotlin * disabled imports ordering Ktlint rule as IDE does not support ktlint ordering * added some missing tests around logger Closes #4311 Signed-off-by: Chris Narkiewicz <hello@ezaquarii.com>
43 lines
1.2 KiB
XML
43 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<FindBugsFilter>
|
|
<Match>
|
|
<Class name="~.*\.Manifest\$.*" />
|
|
</Match>
|
|
<Match>
|
|
<Class name="~.*\.R\$.*" />
|
|
</Match>
|
|
<Match>
|
|
<Class name="~.*\.R\$.*" />
|
|
</Match>
|
|
<Match>
|
|
<Class name="~.*\$\$Parcelable.*" />
|
|
</Match>
|
|
|
|
<!-- Dagger code is autogenerated. Exclude it from Check. -->
|
|
<Match>
|
|
<Or>
|
|
<Class name="~.*\.Dagger.*" />
|
|
<Class name="~com.nextcloud.client.di\..*_.*" />
|
|
</Or>
|
|
</Match>
|
|
<!-- Dagger generated code uses internal APIs -->
|
|
<Match>
|
|
<Class name="~.*\..*.*Factory" />
|
|
<Bug pattern="IICU_INCORRECT_INTERNAL_CLASS_USE" />
|
|
</Match>
|
|
|
|
<!-- Data bindings autogenerated classes -->
|
|
<Match>
|
|
<Or>
|
|
<Class name="~.*BindingImpl"/>
|
|
<Class name="~.*\.DataBinderMapperImpl"/>
|
|
</Or>
|
|
</Match>
|
|
|
|
<Bug pattern="PATH_TRAVERSAL_IN" />
|
|
<Bug pattern="ANDROID_EXTERNAL_FILE_ACCESS" />
|
|
<Bug pattern="BAS_BLOATED_ASSIGNMENT_SCOPE" />
|
|
|
|
<!-- This is unmanageable for now due to large amount of interconnected static state -->
|
|
<Bug pattern="FCCD_FIND_CLASS_CIRCULAR_DEPENDENCY" />
|
|
</FindBugsFilter>
|