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 { |
|||
showNotification: (title, body, onClick) => { |
|||
new Notification(title, { |
|||
body, |
|||
onClick |
|||
}) |
|||
} |
|||
export const showNotification = (title, body, onClick) => { |
|||
new Notification(title, { |
|||
body, |
|||
onClick |
|||
}) |
|||
} |
|||
|
|||
export default { showNotification } |
|||
|
@ -1,11 +1,4 @@ |
|||
import btc from './btc' |
|||
import usd from './usd' |
|||
import bech32 from './bech32' |
|||
import blockExplorer from './blockExplorer' |
|||
|
|||
export default { |
|||
btc, |
|||
usd, |
|||
bech32, |
|||
blockExplorer |
|||
} |
|||
export btc from './btc' |
|||
export usd from './usd' |
|||
export bech32 from './bech32' |
|||
export blockExplorer from './blockExplorer' |
|||
|
Loading…
Reference in new issue