fix(build): disable TrulyRandom lint

This commit is contained in:
Harsh Shandilya 2023-11-01 00:55:19 +05:30
parent 5e711ad8ae
commit 1b0d16a604
No known key found for this signature in database

View file

@ -28,6 +28,8 @@ object LintConfig {
disable += "TypographyQuotes"
// False-positives abound due to use of ViewBinding
disable += "UnusedIds"
// False-positive, not relevant on the API levels we support
disable += "TrulyRandom"
if (!isJVM) {
// Enable compose-lint-checks' Material 2 detector
enable += "ComposeM2Api"