Class: Overcommit::Hook::PreCommit::Jsxcs

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

Overview

Runs ‘jsxcs` (JSCS (JavaScript Code Style Checker) wrapper for JSX files) against any modified JavaScript files.

Instance Attribute Summary

Attributes inherited from Base

#config

Instance Method Summary collapse

Methods inherited from Base

#applicable_files, #description, #enabled?, #executable, #execute, #in_path?, #initialize, #install_command, #name, #quiet?, #required?, #run?, #run_and_transform, #skip?

Constructor Details

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

Instance Method Details

#runObject



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/overcommit/hook/pre_commit/jsxcs.rb', line 5

def run
  result = execute(%W[#{executable} --reporter=inline] + applicable_files)
  return :pass if result.success?

  if result.status == 1
    return :warn, result.stderr.chomp
  end

  # 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]+(\d+)/)
      file = match[1]
      line = match[2]
    end
    modified_lines(file).include?(line.to_i)
  end

  return :fail, 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