JSHint complained about 'Unnecessary semicolon'.

JSHint complained about the semicolons at the end of the for loop
snippets, so I've removed the semicolons after the for loop closing braces.
This commit is contained in:
Ian Oxley 2013-09-10 14:57:56 +01:00
parent ced4f76db8
commit 421cb8a68a

View File

@ -35,13 +35,13 @@ endsnippet
snippet for "for (...) {...} (faster)"
for (var ${2:i} = ${1:Things}.length - 1; $2 >= 0; $2--) {
${3:$1[$2]}${VISUAL}$0
};
}
endsnippet
snippet for "for (...) {...}"
for (var ${2:i}=0; $2 < ${1:Things}.length; $2++) {
${3:$1[$2]}${VISUAL}$0
};
}
endsnippet
snippet fun "function (fun)"