Class: Overcommit::Hook::PreCommit::HtmlTidy

Inherits:
Base
  • Object
show all
Defined in:
lib/overcommit/hook/pre_commit/html_tidy.rb

Overview

Runs ‘tidy` against any modified HTML files.

Constant Summary collapse

MESSAGE_REGEX =
/
  ^(?<file>[^:]+):\s
  line\s(?<line>\d+)\s
  column\s(?<col>\d+)\s-\s
  (?<type>Error|Warning):\s(?<message>.+)$
/x

Instance Attribute Summary

Attributes inherited from Base

#config

Instance Method Summary collapse

Methods inherited from Base

#applicable_files, #command, #description, #enabled?, #execute, #execute_in_background, #flags, #in_path?, #initialize, #name, #process_hook_return_value, #quiet?, #required?, #required_executable, #run?, #run_and_transform, #skip?

Constructor Details

This class inherits a constructor from Overcommit::Hook::Base

Instance Method Details

#runObject



11
12
13
14
15
16
17
18
19
# File 'lib/overcommit/hook/pre_commit/html_tidy.rb', line 11

def run
  # example message:
  #   line 4 column 24 - Warning: <html> proprietary attribute "class"
  messages = collect_messages

  return :pass if messages.empty?

  messages
end