@rpcbase/eslint-config 0.11.0 → 0.13.0

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/eslint.config.js +5 -9
  2. package/package.json +1 -1
package/eslint.config.js CHANGED
@@ -58,18 +58,14 @@ export const config = [
58
58
  "builtin",
59
59
  "external",
60
60
  "internal",
61
- // Then sibling and parent imports. They can be mingled together
62
61
  ["sibling", "parent"],
63
- // Then index file imports
64
62
  "index",
65
- // Then any arcane TypeScript imports
66
63
  "object",
67
- // Then the omitted imports: internal, external, type, unknown
68
64
  ],
69
65
  "pathGroups": [
70
66
  {
71
67
  "pattern": "@rpcbase/**",
72
- "group": "internal",
68
+ "group": "external",
73
69
  "position": "before"
74
70
  },
75
71
  {
@@ -77,10 +73,10 @@ export const config = [
77
73
  "group": "internal",
78
74
  "position": "before"
79
75
  },
80
- // {
81
- // "pattern": "@/**",
82
- // "group": "internal"
83
- // }
76
+ {
77
+ "pattern": "@/**",
78
+ "group": "internal"
79
+ }
84
80
  ],
85
81
  "newlines-between": "always",
86
82
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/eslint-config",
3
- "version": "0.11.0",
3
+ "version": "0.13.0",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "type": "module",