Ax the arbitrary long line warning

It's not 80 or 132. ;)
bug/bundler_fix
William Vu 2014-03-14 10:28:58 -05:00
parent 8393a49148
commit 6aa75a328f
1 changed files with 0 additions and 6 deletions

View File

@ -38,8 +38,6 @@ end
class Msftidy
LONG_LINE_LENGTH = 200 # From 100 to 200 which is stupidly long
# Status codes
OK = 0x00
WARNINGS = 0x10
@ -425,10 +423,6 @@ class Msftidy
error("Unicode detected: #{ln.inspect}", idx)
end
if (ln.length > LONG_LINE_LENGTH)
warn("Line exceeding #{LONG_LINE_LENGTH} bytes", idx)
end
if ln =~ /[ \t]$/
warn("Spaces at EOL", idx)
end