com.netflix.nebula.lint
Owner:
Nebula Plugins
Pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts
https://github.com/nebula-plugins/gradle-lint-plugin
Sources: https://github.com/nebula-plugins/gradle-lint-plugin.git
Version 19.0.1 (latest)
Created 27 November 2023.
Pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts
Using the plugins DSL:
plugins {
id("com.netflix.nebula.lint") version "19.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-lint-plugin:19.0.1")
}
}
apply(plugin = "com.netflix.nebula.lint")
Using the plugins DSL:
plugins {
id "com.netflix.nebula.lint" version "19.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-lint-plugin:19.0.1"
}
}
apply plugin: "com.netflix.nebula.lint"