com.github.ksoichiro.spelling
Owner: Soichiro Kashima
Gradle plugin to inspect spelling using custom blacklist.
https://github.com/ksoichiro/gradle-spelling-plugin
Sources: https://github.com/ksoichiro/gradle-spelling-plugin.git
Version 0.1.1 (latest)
0.1.1
Created 15 December 2015.
Gradle plugin to inspect spelling using custom blacklist.
Using the plugins DSL:
plugins {
id("com.github.ksoichiro.spelling") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.ksoichiro:gradle-spelling-plugin:0.1.1")
}
}
apply(plugin = "com.github.ksoichiro.spelling")
Using the plugins DSL:
plugins {
id "com.github.ksoichiro.spelling" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.ksoichiro:gradle-spelling-plugin:0.1.1"
}
}
apply plugin: "com.github.ksoichiro.spelling"