com.breskeby.lint.rules
Owner:
Rene Groeschke
Additional Lint rules on top of the nebula.lint plugin
https://github.com/breskeby/gradle-lint-rules
Version 0.0.1 (latest)
Created 10 November 2016.
Additional Lint rules on top of the nebula.lint plugin
Using the plugins DSL:
plugins {
id("com.breskeby.lint.rules") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.breskeby.gradle:gradle-lint-addons:0.0.1")
}
}
apply(plugin = "com.breskeby.lint.rules")
Using the plugins DSL:
plugins {
id "com.breskeby.lint.rules" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.breskeby.gradle:gradle-lint-addons:0.0.1"
}
}
apply plugin: "com.breskeby.lint.rules"