Search Gradle plugins

nebula.lint

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 16.0.1

16.0.1

Created 01 November 2019.

Pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts

Add this plugin to your build using the plugins DSL:

plugins {
  id("nebula.lint") version "16.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.netflix.nebula:gradle-lint-plugin:16.0.1")
      }
    }
    
    apply(plugin = "nebula.lint")
  • Applying plugins to all subprojects .