com.felipefzdz.gradle.shellcheck
Owner: Felipe Fernández
The Shellcheck Gradle plugin performs quality checks on your project's Shell source files using Shellcheck and generates reports from these checks.
https://github.com/felipefzdz/gradle-shellcheck-plugin
Sources: https://github.com/felipefzdz/gradle-shellcheck-plugin.git
Version 1.5.0 (latest)
Created 26 September 2024.
The Shellcheck Gradle plugin performs quality checks on your project's Shell source files using Shellcheck and generates reports from these checks.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.felipefzdz.gradle.shellcheck") version "1.5.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.felipefzdz.gradle.shellcheck:com.felipefzdz.gradle.shellcheck.gradle.plugin:1.5.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.felipefzdz.gradle.shellcheck") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.felipefzdz.gradle.shellcheck:com.felipefzdz.gradle.shellcheck.gradle.plugin:1.5.0") } } apply(plugin = "com.felipefzdz.gradle.shellcheck")
- Applying plugins to all subprojects .