org.ec4j.editorconfig
Owner:
Peter Palaga
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.3 (latest)
Created 29 October 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.3"
}
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.3")
}
}
apply(plugin = "org.ec4j.editorconfig")
Using the plugins DSL:
plugins {
id "org.ec4j.editorconfig" version "0.0.3"
}
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.3"
}
}
apply plugin: "org.ec4j.editorconfig"