Skip to content

Commit 203f57f

Browse files
committed
eslint.config: override eslint-plugin-github's unfortunate default
After the upgrade to v6.0.0, the `no-namespace` rule is enabled and causes an error. Absolutely not what we want here. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent f513d0c commit 203f57f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default tseslint.config([
7474
"eslint-comments/no-use": "off",
7575
"github/filenames-match-regex": ["error", "^[a-z_]+(\\.test|\\.d)?$"],
7676
"i18n-text/no-en": "off",
77-
"importPlugin/no-namespace": "off",
77+
"import/no-namespace": "off",
7878
"no-unused-vars": "off",
7979
semi: "off",
8080
},

0 commit comments

Comments
 (0)