mirror of
https://github.com/PretendoNetwork/account.git
synced 2025-04-02 11:02:15 -04:00
20 lines
424 B
JavaScript
20 lines
424 B
JavaScript
import eslintConfig from '@pretendonetwork/eslint-config';
|
|
import globals from 'globals';
|
|
|
|
export default [
|
|
...eslintConfig,
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.node
|
|
}
|
|
}
|
|
},
|
|
{
|
|
rules: {
|
|
// * Because mii-js is imported via GitHub, it will not be resolved by eslint
|
|
// TODO: Remove this rule when mii-js is published to npm
|
|
'import/no-unresolved': ['error', { ignore: ['mii-js'] }]
|
|
}
|
|
}
|
|
];
|