Search Gradle plugins

org.ec4j.editorconfig

A Gradle plugin for checking whether project files comply with format rules defined in .editorconfig files and eventually also for fixing the violations

https://github.com/ec4j/editorconfig-gradle-plugin

Sources: https://github.com/ec4j/editorconfig-gradle-plugin.git

Version 0.0.2

Created 14 February 2018.

A Gradle plugin for checking whether project files comply with format rules defined in .editorconfig files and eventually also for fixing the violations

Using the plugins DSL:

plugins {
  id("org.ec4j.editorconfig") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.ec4j.gradle:editorconfig-gradle-plugin:0.0.2")
  }
}

apply(plugin = "org.ec4j.editorconfig")

Using the plugins DSL:

plugins {
  id "org.ec4j.editorconfig" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.ec4j.gradle:editorconfig-gradle-plugin:0.0.2"
  }
}

apply plugin: "org.ec4j.editorconfig"

Learn how to apply plugins to subprojects