Browse Source
For the node import resolver, "paths" is meant to be absolute paths for global modules. https://github.com/benmosher/eslint-plugin-import/tree/master/resolvers/noderenovate/lint-staged-8.x
Ben Woosley
7 years ago
4 changed files with 18 additions and 21 deletions
@ -1,8 +1,8 @@ |
|||||
export default { |
export const showNotification = (title, body, onClick) => { |
||||
showNotification: (title, body, onClick) => { |
new Notification(title, { |
||||
new Notification(title, { |
body, |
||||
body, |
onClick |
||||
onClick |
}) |
||||
}) |
|
||||
} |
|
||||
} |
} |
||||
|
|
||||
|
export default { showNotification } |
||||
|
@ -1,11 +1,4 @@ |
|||||
import btc from './btc' |
export btc from './btc' |
||||
import usd from './usd' |
export usd from './usd' |
||||
import bech32 from './bech32' |
export bech32 from './bech32' |
||||
import blockExplorer from './blockExplorer' |
export blockExplorer from './blockExplorer' |
||||
|
|
||||
export default { |
|
||||
btc, |
|
||||
usd, |
|
||||
bech32, |
|
||||
blockExplorer |
|
||||
} |
|
||||
|
Loading…
Reference in new issue