mirror of
https://github.com/PretendoNetwork/account.git
synced 2026-04-26 00:06:14 -05:00
23 lines
393 B
JavaScript
23 lines
393 B
JavaScript
import eslintConfig from '@pretendonetwork/eslint-config';
|
|
import globals from 'globals';
|
|
|
|
export default [
|
|
...eslintConfig,
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.node
|
|
}
|
|
}
|
|
},
|
|
{
|
|
rules: {
|
|
'import/no-unresolved': ['error', {
|
|
ignore: [
|
|
'mii-js' // mii-js is a weird package that doesn't have a proper module resolution - it's from GitHub
|
|
]
|
|
}]
|
|
}
|
|
}
|
|
];
|