class Rubocop::Cop::Tab
def inspect(file, source, tokens, sexp)
def inspect(file, source, tokens, sexp) source.each_with_index do |line, index| add_offence(:convention, index + 1, ERROR_MESSAGE) if line =~ /^ *\t/ end end
def inspect(file, source, tokens, sexp) source.each_with_index do |line, index| add_offence(:convention, index + 1, ERROR_MESSAGE) if line =~ /^ *\t/ end end