@coderwyd/eslint-config 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.cjs CHANGED
@@ -46,7 +46,7 @@ var import_parse_gitignore = __toESM(require("parse-gitignore"), 1);
46
46
  var import_picocolors = __toESM(require("picocolors"), 1);
47
47
 
48
48
  // package.json
49
- var version = "2.0.1";
49
+ var version = "2.0.2";
50
50
  var devDependencies = {
51
51
  "@antfu/ni": "^0.21.12",
52
52
  "@types/eslint": "^8.56.0",
package/dist/cli.js CHANGED
@@ -17,7 +17,7 @@ import parse from "parse-gitignore";
17
17
  import c from "picocolors";
18
18
 
19
19
  // package.json
20
- var version = "2.0.1";
20
+ var version = "2.0.2";
21
21
  var devDependencies = {
22
22
  "@antfu/ni": "^0.21.12",
23
23
  "@types/eslint": "^8.56.0",
package/dist/index.cjs CHANGED
@@ -159,9 +159,9 @@ async function imports() {
159
159
  "error",
160
160
  { considerComments: true, count: 1 }
161
161
  ],
162
- "import/no-default-export": "error",
163
162
  "import/no-duplicates": "error",
164
163
  "import/no-mutable-exports": "error",
164
+ "import/no-named-default": "error",
165
165
  "import/no-self-import": "error",
166
166
  "import/no-webpack-loader-syntax": "error",
167
167
  "import/order": [
package/dist/index.js CHANGED
@@ -125,9 +125,9 @@ async function imports() {
125
125
  "error",
126
126
  { considerComments: true, count: 1 }
127
127
  ],
128
- "import/no-default-export": "error",
129
128
  "import/no-duplicates": "error",
130
129
  "import/no-mutable-exports": "error",
130
+ "import/no-named-default": "error",
131
131
  "import/no-self-import": "error",
132
132
  "import/no-webpack-loader-syntax": "error",
133
133
  "import/order": [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@coderwyd/eslint-config",
3
3
  "type": "module",
4
- "version": "2.0.1",
4
+ "version": "2.0.2",
5
5
  "packageManager": "pnpm@8.13.1",
6
6
  "description": "Donny's ESLint config",
7
7
  "author": "Donny Wang <donny526@outlook.com> (https://github.com/coderwyd/)",