* testing webview * adding webview code * fixing on-chain payment from using endpoitn before confirmations * fixed color bug * fixing sats text * fix eslint * remove uneeded flatlist * fixing accounts swaps * fixing tabs rerender issue * fixing missing props * removed prop drilling * add swap state to android * fixed double run bug * fixed tokens confirm balance + added infinity symbol if token doesnt have max supply * adding auth to encription * only run on-chain restore once a minute * remove debugging * commenting webview for later use
24 lines
543 B
JavaScript
24 lines
543 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: '@react-native',
|
|
rules: {
|
|
'react/react-in-jsx-scope': 'off',
|
|
'react-native/no-inline-styles': 'off',
|
|
'dot-notation': 'off',
|
|
curly: 'off',
|
|
'react-hooks/exhaustive-deps': 'off',
|
|
'no-undef': 2,
|
|
'no-unused-vars': 0,
|
|
'no-unreachable': 'off',
|
|
quotes: 'off',
|
|
},
|
|
globals: {
|
|
BigInt: 'readonly',
|
|
Buffer: 'readonly',
|
|
btoa: 'readonly', // both are native to Hermes now
|
|
atob: 'readonly',
|
|
TextDecoder: 'readonly',
|
|
TextEncoder: 'readonly',
|
|
},
|
|
};
|