Don't include code in files for jshint anymore, eslint is run on command

line
This commit is contained in:
Robin Ward
2015-08-13 15:19:27 -04:00
parent b0541500b4
commit a89241f0b9
2 changed files with 1 additions and 25 deletions

View File

@ -116,20 +116,6 @@ module Tilt
end
end
# Include JS code for JSHint
unless Rails.env.production?
if scope.pathname.to_s =~ /js\.es6/
extension = "js.es6"
elsif scope.pathname.to_s =~ /\.es6/
extension = "es6"
else
extension = "js"
end
req_path = "/assets/#{scope.logical_path}.#{extension}"
@output << "\nwindow.__eslintSrc = window.__eslintSrc || {}; window.__eslintSrc['#{req_path}'] = #{data.to_json};\n"
end
@output
end