├── .clang-format ├── .mailmap ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── danger-code_style_validation.gemspec ├── doc └── images │ └── example.png ├── lib ├── code_style_validation │ ├── gem_version.rb │ └── plugin.rb ├── danger_code_style_validation.rb └── danger_plugin.rb └── spec ├── code_style_validation_spec.rb ├── fixtures ├── BadViewController.m ├── SuperViewController.m ├── innocent_diff.diff ├── red_diff.diff ├── ruby_diff.diff ├── violated_diff.diff └── violated_diff_message.md └── spec_helper.rb /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/.mailmap -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/Rakefile -------------------------------------------------------------------------------- /danger-code_style_validation.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/danger-code_style_validation.gemspec -------------------------------------------------------------------------------- /doc/images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/doc/images/example.png -------------------------------------------------------------------------------- /lib/code_style_validation/gem_version.rb: -------------------------------------------------------------------------------- 1 | module CodeStyleValidation 2 | VERSION = '0.3.0'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/code_style_validation/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/lib/code_style_validation/plugin.rb -------------------------------------------------------------------------------- /lib/danger_code_style_validation.rb: -------------------------------------------------------------------------------- 1 | require 'code_style_validation/gem_version' 2 | -------------------------------------------------------------------------------- /lib/danger_plugin.rb: -------------------------------------------------------------------------------- 1 | require 'code_style_validation/plugin' 2 | -------------------------------------------------------------------------------- /spec/code_style_validation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/spec/code_style_validation_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/BadViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/spec/fixtures/BadViewController.m -------------------------------------------------------------------------------- /spec/fixtures/SuperViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/spec/fixtures/SuperViewController.m -------------------------------------------------------------------------------- /spec/fixtures/innocent_diff.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/spec/fixtures/innocent_diff.diff -------------------------------------------------------------------------------- /spec/fixtures/red_diff.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/spec/fixtures/red_diff.diff -------------------------------------------------------------------------------- /spec/fixtures/ruby_diff.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/spec/fixtures/ruby_diff.diff -------------------------------------------------------------------------------- /spec/fixtures/violated_diff.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/spec/fixtures/violated_diff.diff -------------------------------------------------------------------------------- /spec/fixtures/violated_diff_message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/spec/fixtures/violated_diff_message.md -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flix-tech/danger-code_style_validation/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------