GitXplorerGitXplorer
f

android-checkstyle-plugin

public
39 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
dc46b15be07270cbab398853ba228516924d2086

Update Changelog for 1.0.1

ff2prateek committed 9 years ago
Unverified
22846a0b86b14ff06519035e054f007d17401f7b

Prepare next development version.

ff2prateek committed 9 years ago
Unverified
f50b442d5d87483c7d824b5e81f444b0280be62a

Prepare for release 1.0.1.

ff2prateek committed 9 years ago
Unverified
daeba86221914178b59afaba9db872060a0dc884

Add release data to Change Log for 1.0.0

ff2prateek committed 9 years ago
Unverified
7a4ede5fca72f13038ebcf90296a23a03501a7ce

Merge pull request #1 from JakeWharton/jw/dry

ff2prateek committed 10 years ago
Unverified
3134e1f31be99e39a3a1b87cfbc6ed98b54385bd

Consolidate task-creation code.

JJakeWharton committed 10 years ago

README

The README file for this repository.

Android Checkstyle Plugin

A plugin that lets you use the checkstyle plugin for Android projects.

Usage

Apply the plugin in your build.gradle along with the regular 'checkstyle' plugin:

buildscript {
  repositories {
    mavenCentral()
  }
  dependencies {
    classpath 'com.f2prateek.checkstyle:checkstyle:1.0.1'
  }
}

apply plugin: 'checkstyle'
apply plugin: 'com.f2prateek.checkstyle'

checkstyle {
  configFile rootProject.file('gradle/checkstyle.xml') // points to your checkstyle config
}

License

Copyright 2015 Prateek Srivastava

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.