We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dbcccb commit 048dfbaCopy full SHA for 048dfba
eslint.config.js
@@ -21,6 +21,10 @@ export default [
21
'github/no-then': 'off',
22
'i18n-text/no-en': 'off',
23
'import/extensions': ['error', 'ignorePackages'],
24
+ // stylelint 17 is ESM-only and has no `main` field, only `exports`. The legacy
25
+ // eslint-import-resolver-node (used by eslint-plugin-import@2) cannot resolve
26
+ // packages that rely solely on the `exports` field, so we opt out for `stylelint`.
27
+ 'import/no-unresolved': ['error', {ignore: ['^stylelint$']}],
28
},
29
30
{
0 commit comments