mirror of
https://github.com/minibits-cash/minibits_wallet.git
synced 2026-07-22 07:48:28 +00:00
12 lines
201 B
JavaScript
12 lines
201 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: '@react-native',
|
|
rules: {
|
|
|
|
semi: ['error', 'never'],
|
|
"unused-imports/no-unused-imports": "error"
|
|
|
|
},
|
|
plugins: ['unused-imports']
|
|
}
|