Skip to content

Commit c0ce8ff

Browse files
authored
Merge pull request #28 from AndreySyagrovskiy/master
fixes of error of eslint were added
2 parents 8d01771 + e5d0c12 commit c0ce8ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

snippets/snippets.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@
7373
},
7474
"forOf": {
7575
"prefix": "fof",
76-
"body": "for(let ${1:item} of ${2:object}) {\n\t${0}\n}",
76+
"body": "for (const ${1:item} of ${2:object}) {\n\t${0}\n}",
7777
"description": "Iterating over property names of iterable objects"
7878
},
7979
"forIn": {
8080
"prefix": "fin",
81-
"body": "for(let ${1:item} in ${2:object}) {\n\t${0}\n}",
81+
"body": "for (const ${1:item} in ${2:object}) {\n\t${0}\n}",
8282
"description": "Iterating over property values of iterable objects"
8383
},
8484
"anonymousFunction": {

0 commit comments

Comments
 (0)