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.RuleSet
import com.pinterest.ktlint.core.RuleSetProvider
public class TestRuleSetProvider : RuleSetProvider {
override fun get(): RuleSet = RuleSet(
"test",
DumpASTRule(),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy