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.1.0 (latest)
0.1.0
Created 25 January 2024.
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.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.ec4j.gradle:editorconfig-gradle-plugin:0.1.0")
}
}
apply(plugin = "org.ec4j.editorconfig")
Using the plugins DSL:
plugins {
id "org.ec4j.editorconfig" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.ec4j.gradle:editorconfig-gradle-plugin:0.1.0"
}
}
apply plugin: "org.ec4j.editorconfig"