insert space between "for" keyword and "(" (#215)

* insert space between "for" keyword and "("

In order to follow the standard JavaScript coding style.

* trim final newline
This commit is contained in:
ybiquitous 2017-09-14 19:04:34 +09:00 committed by Andrea Crotti
parent 886befad0e
commit 00e4e12922
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# -*- mode: snippet -*-
#name : for
# -*- mode: snippet; require-final-newline: nil -*-
# name: for
# --
for(var ${1:i} = ${2:0}; $1 < ${3:collection}.length; $1++) {
for (var ${1:i} = ${2:0}; $1 < ${3:collection}.length; $1++) {
$0
}