24 lines
		
	
	
		
			541 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			541 B
		
	
	
	
		
			Ruby
		
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module HamlLint
 | |
|   class Linter
 | |
|     class InlineJavaScript < Linter
 | |
|       include ::HamlLint::LinterRegistry
 | |
| 
 | |
|       MSG = 'Inline JavaScript is discouraged (https://docs.gitlab.com/ee/development/gotchas.html#do-not-use-inline-javascript-in-views)'
 | |
| 
 | |
|       def visit_filter(node)
 | |
|         return unless node.filter_type == 'javascript'
 | |
| 
 | |
|         record_lint(node, MSG)
 | |
|       end
 | |
| 
 | |
|       def visit_tag(node)
 | |
|         return unless node.tag_name == 'script'
 | |
| 
 | |
|         record_lint(node, MSG)
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |