├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── danger-checkstyle_format.gemspec ├── lib ├── checkstyle_format │ ├── checkstyle_error.rb │ ├── gem_version.rb │ └── plugin.rb ├── danger_checkstyle_format.rb └── danger_plugin.rb └── spec ├── checkstyle_format_spec.rb ├── fixtures └── checkstyle.xml └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/Rakefile -------------------------------------------------------------------------------- /danger-checkstyle_format.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/danger-checkstyle_format.gemspec -------------------------------------------------------------------------------- /lib/checkstyle_format/checkstyle_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/lib/checkstyle_format/checkstyle_error.rb -------------------------------------------------------------------------------- /lib/checkstyle_format/gem_version.rb: -------------------------------------------------------------------------------- 1 | module CheckstyleFormat 2 | VERSION = "0.1.1".freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/checkstyle_format/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/lib/checkstyle_format/plugin.rb -------------------------------------------------------------------------------- /lib/danger_checkstyle_format.rb: -------------------------------------------------------------------------------- 1 | require "checkstyle_format/gem_version" 2 | -------------------------------------------------------------------------------- /lib/danger_plugin.rb: -------------------------------------------------------------------------------- 1 | require "checkstyle_format/plugin" 2 | -------------------------------------------------------------------------------- /spec/checkstyle_format_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/spec/checkstyle_format_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/spec/fixtures/checkstyle.xml -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noboru-i/danger-checkstyle_format/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------