account/eslint.config.mjs
2025-05-20 22:46:11 +01:00

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
]
}]
}
}
];