We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
import/no-named-as-default
1 parent 02861b7 commit 0d12fc4Copy full SHA for 0d12fc4
packages/eslint-config/index.js
@@ -13,6 +13,7 @@ export default [
13
ecmaVersion: "latest",
14
sourceType: "module",
15
},
16
+ plugins: { import: importPlugin },
17
rules: {
18
"no-alert": "error",
19
"no-await-in-loop": "error",
@@ -74,6 +75,10 @@ export default [
74
75
],
76
77
78
+
79
+ // Must be turned off because of the `context.getAncestors` error seen in
80
+ // import-js/eslint-plugin-import#2995 and import-js/eslint-plugin-import#2556#issuecomment-2121423498
81
+ "import/no-named-as-default": "off",
82
83
84
];
packages/eslint-config/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@hkamran/eslint-config",
3
- "version": "2.0.0-rc.1",
+ "version": "2.0.0-rc.2",
4
"license": "AGPL-3.0-or-later",
5
"description": "My personal ESLint configuration",
6
"main": "index.js",
0 commit comments