realm-js/lib/.eslintrc
Scott Kyle 725e9855fe Update RPC JS to use originalXMLHttpRequest
React Native now leaves the original object accessible when it "polyfills" objects. So we check for that, but still have the previous logic in place in case they change their minds.
2015-10-21 13:57:34 -07:00

18 lines
263 B
Plaintext

{
"root": true,
"extends": "eslint:recommended",
"env": {
"commonjs": true,
"browser": true,
"es6": true,
},
"globals": {
"global": true
},
"rules": {
"comma-dangle": 0,
"no-unused-vars": 1,
"strict": [2, "global"]
}
}