Sha256: 9d06e655057bfa6bc74644f1d656ad7c7b7fc7e178a0196975d2597c0df99138
Contents?: true
Size: 1.42 KB
Versions: 2
Compression:
Stored size: 1.42 KB
Contents
PuppetLint.new_check(:relative_classname_inclusion) do def check tokens.each_with_index do |token, token_idx| if token.type == :NAME && ['include','contain','require'].include?(token.value) s = token.next_code_token in_function = 0 while s.type != :NEWLINE n = s.next_code_token if s.type == :NAME || s.type == :SSTRING if n && n.type == :LPAREN in_function += 1 elsif in_function > 0 && n && n.type == :RPAREN in_function -= 1 elsif in_function == 0 && s.value !~ /^::/ notify :warning, { :message => 'class included by relative name', :line => s.line, :column => s.column, :token => s, } end end s = s.next_token end elsif token.type == :CLASS and token.next_code_token.type == :LBRACE s = token.next_code_token while s.type != :COLON if (s.type == :NAME || s.type == :SSTRING) && s.value !~ /^::/ notify :warning, { :message => 'class included by relative name', :line => s.line, :column => s.column, :token => s, } end s = s.next_token end end end end def fix(problem) problem[:token].value = '::'+problem[:token].value end end
Version data entries
2 entries across 2 versions & 1 rubygems