mirror of
https://github.com/FranP-code/public-apis.git
synced 2025-10-13 00:03:04 +00:00
pop main logic out one level by reversing condition
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user