Class: Overcommit::Hook::PreCommit::CoffeeLint

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

Overview

Runs ‘coffeelint` against any modified CoffeeScript files.

Instance Method Summary collapse

Methods inherited from Base

#applicable_files, #command, #description, #enabled?, #in_path?, #initialize, #name, #quiet?, #required?, #run?, #skip?

Constructor Details

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

Instance Method Details

#runObject



4
5
6
7
8
9
10
11
12
# File 'lib/overcommit/hook/pre_commit/coffee_lint.rb', line 4

def run
  unless in_path?('coffeelint')
    return :warn, 'Run `npm install -g coffeelint`'
  end

  result = command("coffeelint --quiet #{applicable_files.join(' ')}")
  return :good if result.success?
  return :bad, result.stdout
end