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:
parent
ced4f76db8
commit
421cb8a68a
@ -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)"
|
||||
|
Loading…
x
Reference in New Issue
Block a user