搜索Gradle插件

版本 0.2 (最新版本)

0.2

创建于 2017年1月29日。

检查javascript, lesscss和html代码。

使用 插件的DSL

plugins {
  id("com.github.rahulsom.linters") version "0.2"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.rahulsom:gradle-linters-plugin:0.2")
  }
}

apply(plugin = "com.github.rahulsom.linters")

使用 插件的DSL

plugins {
  id "com.github.rahulsom.linters" version "0.2"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.rahulsom:gradle-linters-plugin:0.2"
  }
}

apply plugin: "com.github.rahulsom.linters"

了解如何将插件应用到子项目中