com.github.linsheng9731.scalariform
Owner: linshengsheng
Reformats Scala source code according to your configured conventions
https://github.com/linsheng9731/scalariform-gradle-plugin
Sources: https://github.com/linsheng9731/scalariform-gradle-plugin.git
Version 0.3.0 (latest)
0.3.0
Created 07 March 2019.
Reformats Scala source code according to your configured conventions
Using the plugins DSL:
plugins {
id("com.github.linsheng9731.scalariform") version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.linsheng9731.gradle.plugins:scalariform-gradle-plugin:0.3.0")
}
}
apply(plugin = "com.github.linsheng9731.scalariform")
Using the plugins DSL:
plugins {
id "com.github.linsheng9731.scalariform" version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.linsheng9731.gradle.plugins:scalariform-gradle-plugin:0.3.0"
}
}
apply plugin: "com.github.linsheng9731.scalariform"