realm-js/lib/.eslintrc
Scott Kyle 336ef55c1f Remove uses of for-of loops in RPC modules
The React Native packager does not transform for-of loops, and minification step uses UglifyJS, which does not yet support ES6 syntax.

Fixes #120
2015-11-05 16:10:52 -08:00

14 lines
162 B
Plaintext

{
"env": {
"commonjs": true,
"browser": true,
"es6": true,
},
"ecmaFeatures": {
"forOf": false
},
"globals": {
"global": true
}
}