@wopjs/eslint-config 0.1.53 → 0.1.55

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.
Files changed (2) hide show
  1. package/index.js +5 -5
  2. package/package.json +5 -5
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import jsEslint from "@eslint/js";
2
2
  import gitignore from "eslint-config-flat-gitignore";
3
3
  import eslintConfigPrettier from "eslint-config-prettier";
4
- import importX from "eslint-plugin-import-x";
4
+ import { importX } from "eslint-plugin-import-x";
5
5
  import jsonc from "eslint-plugin-jsonc";
6
6
  import perfectionist from "eslint-plugin-perfectionist";
7
7
  import { defineConfig } from "eslint/config";
@@ -47,10 +47,10 @@ export default defineConfig(
47
47
  groups: [
48
48
  "side-effect-style",
49
49
  "style",
50
- ["builtin-type", "external-type", "internal-type", "parent-type", "sibling-type", "index-type"],
51
- ["builtin", "external"],
52
- ["internal", "parent", "sibling", "index"],
53
- "object",
50
+ ["type-builtin", "type-external", "type-internal", "type-parent", "type-sibling", "type-index"],
51
+ ["value-builtin", "value-external"],
52
+ ["value-internal", "value-parent", "value-sibling", "value-index"],
53
+ "ts-equals-import",
54
54
  "unknown",
55
55
  ],
56
56
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wopjs/eslint-config",
3
- "version": "0.1.53",
3
+ "version": "0.1.55",
4
4
  "description": "Wopjs eslint config that aims to enforce code style that is consistent and diff-friendly, easy to review.",
5
5
  "repository": "wopjs/eslint-config",
6
6
  "main": "./index.js",
@@ -39,16 +39,16 @@
39
39
  "eslint": "9.x"
40
40
  },
41
41
  "dependencies": {
42
- "@eslint/js": "^9.39.1",
42
+ "@eslint/js": "^9.39.2",
43
43
  "eslint-config-flat-gitignore": "^2.1.0",
44
44
  "eslint-config-prettier": "^10.1.8",
45
45
  "eslint-plugin-import-x": "^4.16.1",
46
46
  "eslint-plugin-jsonc": "^2.21.0",
47
- "eslint-plugin-perfectionist": "^4.15.1",
48
- "typescript-eslint": "^8.48.1"
47
+ "eslint-plugin-perfectionist": "^5.0.0",
48
+ "typescript-eslint": "^8.50.0"
49
49
  },
50
50
  "devDependencies": {
51
- "eslint": "^9.39.1",
51
+ "eslint": "^9.39.2",
52
52
  "prettier": "^3.7.4",
53
53
  "typescript": "^5.9.3"
54
54
  }