Hard tabs for now

bug/bundler_fix
Tod Beardsley 2013-09-12 16:15:50 -05:00
parent 52843c6a67
commit 32d2f7ffce
1 changed files with 7 additions and 7 deletions

View File

@ -121,13 +121,13 @@ class Msftidy
end
end
def check_snake_case_filename
sep = File::SEPARATOR
good_name = Regexp.new "^[a-z0-9_#{sep}]+\.rb$"
unless @name =~ good_name
warn "Filenames should be alphanum and snake case."
end
end
def check_snake_case_filename
sep = File::SEPARATOR
good_name = Regexp.new "^[a-z0-9_#{sep}]+\.rb$"
unless @name =~ good_name
warn "Filenames should be alphanum and snake case."
end
end
def check_old_keywords
max_count = 10