RuboCop Checkstyle Formatter
A formatter for RuboCop that outputs in checkstyle format. It requires RuboCop version 1.20.0 or above.
Installation
Add this line to your application's Gemfile:
gem 'rubocop-checkstyle_formatter', require: false
And then execute:
$ bundle
Or install it yourself as:
$ gem install rubocop-checkstyle_formatter
Usage
$ rubocop --require rubocop/formatter/checkstyle_formatter --format RuboCop::Formatter::CheckstyleFormatter
I use this formatter in Jenkins with Checkstyle plugin. As a part of build, I execute rubocop as shell script like:
bundle exec rubocop --require rubocop/formatter/checkstyle_formatter --format RuboCop::Formatter::CheckstyleFormatter --no-color --rails --out tmp/checkstyle.xml
Then, after build, I add post-build action 'Publish Checkstyle analysis results' and configure Checkstyle results to "tmp/checkstyle.xml".
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request