27381e22a9
Files in lib will be eager loaded and hence will require haml_lint to be loaded. Since this is only a development dependency, we can't assume this gem will be available in production, so it should never be loaded in production.
25 lines
807 B
Ruby
25 lines
807 B
Ruby
# frozen_string_literal: true
|
|
|
|
unless Rails.env.production?
|
|
require_dependency 'haml_lint/haml_visitor'
|
|
require_dependency 'haml_lint/linter'
|
|
require_dependency 'haml_lint/linter_registry'
|
|
|
|
module HamlLint
|
|
class Linter::InlineJavaScript < Linter
|
|
include ::HamlLint::LinterRegistry
|
|
|
|
def visit_filter(node)
|
|
return unless node.filter_type == 'javascript'
|
|
|
|
record_lint(node, 'Inline JavaScript is discouraged (https://docs.gitlab.com/ee/development/gotchas.html#do-not-use-inline-javascript-in-views)')
|
|
end
|
|
|
|
def visit_tag(node)
|
|
return unless node.tag_name == 'script'
|
|
|
|
record_lint(node, 'Inline JavaScript is discouraged (https://docs.gitlab.com/ee/development/gotchas.html#do-not-use-inline-javascript-in-views)')
|
|
end
|
|
end
|
|
end
|
|
end
|