com.pinterest.ruleset.test.TestRuleSetProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktlint-ruleset-test Show documentation
Show all versions of ktlint-ruleset-test Show documentation
An anti-bikeshedding Kotlin linter with built-in formatter.
package com.pinterest.ruleset.test
import com.pinterest.ktlint.core.RuleProvider
import com.pinterest.ktlint.core.RuleSetProviderV2
public class TestRuleSetProvider :
RuleSetProviderV2(
id = "test",
about = NO_ABOUT,
) {
override fun getRuleProviders(): Set =
setOf(
RuleProvider { DumpASTRule() },
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy