mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-09 22:05:57 +00:00
725e9855fe
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.
18 lines
263 B
Plaintext
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"]
|
|
}
|
|
}
|