pop main logic out one level by reversing condition

This commit is contained in:
Dave Machado 2017-07-28 14:35:32 -04:00
parent 8c74f6fe68
commit 01161074fa

View file

@ -31,9 +31,9 @@ end
File.foreach(filename).with_index do | line, line_num | File.foreach(filename).with_index do | line, line_num |
line_num += 1 line_num += 1
if line.start_with?('|')
# Skip table schema lines # Skip non-markdown table lines and table schema lines
if line.eql? "|---|---|---|---|---|\n" if !line.start_with?('|') || line.eql?("|---|---|---|---|---|\n")
next next
end end
@ -79,7 +79,6 @@ File.foreach(filename).with_index do | line, line_num |
if !link_val.start_with?("[Go!](") || !link_val.end_with?(')') if !link_val.start_with?("[Go!](") || !link_val.end_with?(')')
add_error(line_num, INDEX_LINK, "format should be \"[Go!](<LINK>)\": #{link_val}") add_error(line_num, INDEX_LINK, "format should be \"[Go!](<LINK>)\": #{link_val}")
end end
end
end end
$errors.each do | e | $errors.each do | e |
puts e puts e