Class: Overcommit::Hook::PreCommit::HamlLint
- Defined in:
- lib/overcommit/hook/pre_commit/haml_lint.rb
Overview
Runs ‘haml-lint` against any modified HAML files.
Instance Method Summary collapse
Methods inherited from Base
#applicable_files, #description, #enabled?, #execute, #in_path?, #initialize, #name, #quiet?, #required?, #run?, #skip?
Constructor Details
This class inherits a constructor from Overcommit::Hook::Base
Instance Method Details
#run ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/overcommit/hook/pre_commit/haml_lint.rb', line 4 def run unless in_path?('haml-lint') return :warn, 'haml-lint not installed -- run `gem install haml-lint`' end result = execute(%w[haml-lint] + applicable_files) return :good if result.success? # Keep lines from the output for files that we actually modified error_lines, warning_lines = result.stdout.split("\n").partition do |output_line| if match = output_line.match(/^([^:]+):(\d+)/) file = match[1] line = match[2] end modified_lines(file).include?(line.to_i) end return :bad, error_lines.join("\n") unless error_lines.empty? [:warn, "Modified files have lints (on lines you didn't modify)\n" << warning_lines.join("\n")] end |