Skip to content

Commit

Permalink
add allow es6 to .jshintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Conway-Jones committed Jun 23, 2017
1 parent f419595 commit 256f8e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .jshintrc
Expand Up @@ -14,5 +14,6 @@
//"expr": true, // allow ternery operator syntax...
"shadow": true, // allow variable shadowing (re-use of names...)
"sub": true, // don't warn that foo['bar'] should be written as foo.bar
"proto": true // allow setting of __proto__ in node < v0.12
"proto": true, // allow setting of __proto__ in node < v0.12,
"esversion": 6 // allow es6
}

0 comments on commit 256f8e7

Please sign in to comment.