├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── CHANGELOG.md ├── Dangerfile ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── danger-commit_lint.gemspec ├── lib ├── commit_lint │ ├── commit_check.rb │ ├── empty_line_check.rb │ ├── gem_version.rb │ ├── plugin.rb │ ├── subject_cap_check.rb │ ├── subject_length_check.rb │ ├── subject_period_check.rb │ └── subject_words_check.rb ├── danger_commit_lint.rb └── danger_plugin.rb └── spec ├── commit_lint_spec.rb ├── spec_helper.rb └── subject_length_check_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- 1 | commit_lint.check 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/Rakefile -------------------------------------------------------------------------------- /danger-commit_lint.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/danger-commit_lint.gemspec -------------------------------------------------------------------------------- /lib/commit_lint/commit_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/lib/commit_lint/commit_check.rb -------------------------------------------------------------------------------- /lib/commit_lint/empty_line_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/lib/commit_lint/empty_line_check.rb -------------------------------------------------------------------------------- /lib/commit_lint/gem_version.rb: -------------------------------------------------------------------------------- 1 | module CommitLint 2 | VERSION = '0.0.7'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/commit_lint/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/lib/commit_lint/plugin.rb -------------------------------------------------------------------------------- /lib/commit_lint/subject_cap_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/lib/commit_lint/subject_cap_check.rb -------------------------------------------------------------------------------- /lib/commit_lint/subject_length_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/lib/commit_lint/subject_length_check.rb -------------------------------------------------------------------------------- /lib/commit_lint/subject_period_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/lib/commit_lint/subject_period_check.rb -------------------------------------------------------------------------------- /lib/commit_lint/subject_words_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/lib/commit_lint/subject_words_check.rb -------------------------------------------------------------------------------- /lib/danger_commit_lint.rb: -------------------------------------------------------------------------------- 1 | require 'commit_lint/gem_version' 2 | -------------------------------------------------------------------------------- /lib/danger_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/lib/danger_plugin.rb -------------------------------------------------------------------------------- /spec/commit_lint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/spec/commit_lint_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/subject_length_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonallured/danger-commit_lint/HEAD/spec/subject_length_check_spec.rb --------------------------------------------------------------------------------