lint catch es6 escapes in core nodes

to fix twitter node and sqlite node
This commit is contained in:
Dave Conway-Jones
2018-05-18 18:40:14 +01:00
parent 44b4f44988
commit 989c7147cb
5 changed files with 9 additions and 7 deletions

View File

@@ -14,6 +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
"esversion": 6 // allow es6
"proto": true // allow setting of __proto__ in node < v0.12
/* "esversion": 6 // allow es6 */
}