Sha256: 9fbd3ade7e54ef8e2b5e162e81686324cac9676fd324886ef289894571bd9c09
Contents?: true
Size: 1.18 KB
Versions: 2
Compression:
Stored size: 1.18 KB
Contents
# encoding: utf-8 module Phare class Check class JSHint < Check attr_reader :config, :path def initialize(directory, options = {}) @config = File.expand_path("#{directory}.jshintrc", __FILE__) @path = File.expand_path("#{directory}app/assets/javascripts", __FILE__) @glob = File.join(@path, '**/*') @extensions = %w(.js .es6) @options = options super end def command if @tree.changed? "jshint --config #{@config} --extra-ext #{@extensions.join(',')} #{@tree.changes.join(' ')}" else "jshint --config #{@config} --extra-ext #{@extensions.join(',')} #{@glob}" end end protected def binary_exists? !Phare.system_output('which jshint').empty? end def configuration_exists? File.exists?(@config) end def arguments_exists? @tree.changed? || Dir.exists?(@path) end def print_banner Phare.puts '---------------------------------------------' Phare.puts 'Running JSHint to check for JavaScript style…' Phare.puts '---------------------------------------------' end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
phare-0.5.2 | lib/phare/check/jshint.rb |
phare-0.5.1 | lib/phare/check/jshint.rb |