eslint-config-decent 2.8.19 → 2.8.20

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/index.cjs CHANGED
@@ -386,7 +386,8 @@ const base$c = {
386
386
  {
387
387
  "newlines-between": "always",
388
388
  alphabetize: { order: "asc", caseInsensitive: true },
389
- pathGroupsExcludedImportTypes: ["builtin"]
389
+ pathGroupsExcludedImportTypes: ["builtin"],
390
+ groups: ["builtin", "external", "internal", "parent", "sibling", "index"]
390
391
  }
391
392
  ]
392
393
  }
package/dist/index.mjs CHANGED
@@ -362,7 +362,8 @@ const base$c = {
362
362
  {
363
363
  "newlines-between": "always",
364
364
  alphabetize: { order: "asc", caseInsensitive: true },
365
- pathGroupsExcludedImportTypes: ["builtin"]
365
+ pathGroupsExcludedImportTypes: ["builtin"],
366
+ groups: ["builtin", "external", "internal", "parent", "sibling", "index"]
366
367
  }
367
368
  ]
368
369
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-decent",
3
- "version": "2.8.19",
3
+ "version": "2.8.20",
4
4
  "description": "A decent ESLint configuration",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
package/src/import.ts CHANGED
@@ -12,6 +12,7 @@ const base: TSESLint.FlatConfig.Config = {
12
12
  'newlines-between': 'always',
13
13
  alphabetize: { order: 'asc', caseInsensitive: true },
14
14
  pathGroupsExcludedImportTypes: ['builtin'],
15
+ groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'],
15
16
  },
16
17
  ],
17
18
  },