anytype-kotlin-wild/lint.gradle
Sergey Boishtyan 79bcfcd811
Tech | Fix | Lint setup for CI (#2286)
* Tech | Fix | Reduce tag size

* Tech | Enhancement | Move lint configuration to one place

* Tech | Enhancement | Enable Gradle quiet mode for errors logs only
2022-05-18 23:21:27 +03:00

10 lines
288 B
Groovy

android {
lint {
abortOnError false
disable 'InvalidPackage', 'OldTargetApi', 'IconDensities', 'IconMissingDensityFolder', 'NullSafeMutableLiveData'
ignoreWarnings true
quiet true
checkReleaseBuilds false
checkDependencies false
}
}