@storm-software/eslint 0.155.7 → 0.156.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 (3) hide show
  1. package/README.md +1 -1
  2. package/dist/types.d.ts +1232 -409
  3. package/package.json +7 -7
package/dist/types.d.ts CHANGED
@@ -1444,233 +1444,233 @@ Backward pagination arguments
1444
1444
  'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
1445
1445
  /**
1446
1446
  * Enforce or ban the use of inline type-only markers for named imports.
1447
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/consistent-type-specifier-style.md
1447
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/consistent-type-specifier-style.md
1448
1448
  */
1449
1449
  'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
1450
1450
  /**
1451
1451
  * Ensure a default export is present, given a default import.
1452
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/default.md
1452
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/default.md
1453
1453
  */
1454
1454
  'import/default'?: Linter.RuleEntry<[]>
1455
1455
  /**
1456
1456
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
1457
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/dynamic-import-chunkname.md
1457
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/dynamic-import-chunkname.md
1458
1458
  */
1459
1459
  'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
1460
1460
  /**
1461
1461
  * Forbid any invalid exports, i.e. re-export of the same name.
1462
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/export.md
1462
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/export.md
1463
1463
  */
1464
1464
  'import/export'?: Linter.RuleEntry<[]>
1465
1465
  /**
1466
1466
  * Ensure all exports appear after other statements.
1467
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/exports-last.md
1467
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/exports-last.md
1468
1468
  */
1469
1469
  'import/exports-last'?: Linter.RuleEntry<[]>
1470
1470
  /**
1471
1471
  * Ensure consistent use of file extension within the import path.
1472
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/extensions.md
1472
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/extensions.md
1473
1473
  */
1474
1474
  'import/extensions'?: Linter.RuleEntry<ImportExtensions>
1475
1475
  /**
1476
1476
  * Ensure all imports appear before other statements.
1477
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/first.md
1477
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/first.md
1478
1478
  */
1479
1479
  'import/first'?: Linter.RuleEntry<ImportFirst>
1480
1480
  /**
1481
1481
  * Prefer named exports to be grouped together in a single export declaration.
1482
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/group-exports.md
1482
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/group-exports.md
1483
1483
  */
1484
1484
  'import/group-exports'?: Linter.RuleEntry<[]>
1485
1485
  /**
1486
1486
  * Replaced by `import-x/first`.
1487
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/imports-first.md
1487
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/imports-first.md
1488
1488
  * @deprecated
1489
1489
  */
1490
1490
  'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
1491
1491
  /**
1492
1492
  * Enforce the maximum number of dependencies a module can have.
1493
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/max-dependencies.md
1493
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/max-dependencies.md
1494
1494
  */
1495
1495
  'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
1496
1496
  /**
1497
1497
  * Ensure named imports correspond to a named export in the remote file.
1498
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/named.md
1498
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/named.md
1499
1499
  */
1500
1500
  'import/named'?: Linter.RuleEntry<ImportNamed>
1501
1501
  /**
1502
1502
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
1503
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/namespace.md
1503
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/namespace.md
1504
1504
  */
1505
1505
  'import/namespace'?: Linter.RuleEntry<ImportNamespace>
1506
1506
  /**
1507
1507
  * Enforce a newline after import statements.
1508
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/newline-after-import.md
1508
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/newline-after-import.md
1509
1509
  */
1510
1510
  'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
1511
1511
  /**
1512
1512
  * Forbid import of modules using absolute paths.
1513
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-absolute-path.md
1513
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-absolute-path.md
1514
1514
  */
1515
1515
  'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
1516
1516
  /**
1517
1517
  * Forbid AMD `require` and `define` calls.
1518
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-amd.md
1518
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-amd.md
1519
1519
  */
1520
1520
  'import/no-amd'?: Linter.RuleEntry<[]>
1521
1521
  /**
1522
1522
  * Forbid anonymous values as default exports.
1523
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-anonymous-default-export.md
1523
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-anonymous-default-export.md
1524
1524
  */
1525
1525
  'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
1526
1526
  /**
1527
1527
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
1528
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-commonjs.md
1528
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-commonjs.md
1529
1529
  */
1530
1530
  'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
1531
1531
  /**
1532
1532
  * Forbid a module from importing a module with a dependency path back to itself.
1533
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-cycle.md
1533
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-cycle.md
1534
1534
  */
1535
1535
  'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
1536
1536
  /**
1537
1537
  * Forbid default exports.
1538
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-default-export.md
1538
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-default-export.md
1539
1539
  */
1540
1540
  'import/no-default-export'?: Linter.RuleEntry<[]>
1541
1541
  /**
1542
1542
  * Forbid imported names marked with `@deprecated` documentation tag.
1543
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-deprecated.md
1543
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-deprecated.md
1544
1544
  */
1545
1545
  'import/no-deprecated'?: Linter.RuleEntry<[]>
1546
1546
  /**
1547
1547
  * Forbid repeated import of the same module in multiple places.
1548
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-duplicates.md
1548
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-duplicates.md
1549
1549
  */
1550
1550
  'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
1551
1551
  /**
1552
1552
  * Forbid `require()` calls with expressions.
1553
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-dynamic-require.md
1553
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-dynamic-require.md
1554
1554
  */
1555
1555
  'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
1556
1556
  /**
1557
1557
  * Forbid empty named import blocks.
1558
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-empty-named-blocks.md
1558
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-empty-named-blocks.md
1559
1559
  */
1560
1560
  'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
1561
1561
  /**
1562
1562
  * Forbid the use of extraneous packages.
1563
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-extraneous-dependencies.md
1563
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-extraneous-dependencies.md
1564
1564
  */
1565
1565
  'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
1566
1566
  /**
1567
1567
  * Forbid import statements with CommonJS module.exports.
1568
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-import-module-exports.md
1568
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-import-module-exports.md
1569
1569
  */
1570
1570
  'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
1571
1571
  /**
1572
1572
  * Forbid importing the submodules of other modules.
1573
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-internal-modules.md
1573
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-internal-modules.md
1574
1574
  */
1575
1575
  'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
1576
1576
  /**
1577
1577
  * Forbid the use of mutable exports with `var` or `let`.
1578
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-mutable-exports.md
1578
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-mutable-exports.md
1579
1579
  */
1580
1580
  'import/no-mutable-exports'?: Linter.RuleEntry<[]>
1581
1581
  /**
1582
1582
  * Forbid use of exported name as identifier of default export.
1583
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-named-as-default.md
1583
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-as-default.md
1584
1584
  */
1585
1585
  'import/no-named-as-default'?: Linter.RuleEntry<[]>
1586
1586
  /**
1587
1587
  * Forbid use of exported name as property of default export.
1588
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-named-as-default-member.md
1588
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-as-default-member.md
1589
1589
  */
1590
1590
  'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
1591
1591
  /**
1592
1592
  * Forbid named default exports.
1593
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-named-default.md
1593
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-default.md
1594
1594
  */
1595
1595
  'import/no-named-default'?: Linter.RuleEntry<[]>
1596
1596
  /**
1597
1597
  * Forbid named exports.
1598
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-named-export.md
1598
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-named-export.md
1599
1599
  */
1600
1600
  'import/no-named-export'?: Linter.RuleEntry<[]>
1601
1601
  /**
1602
1602
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
1603
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-namespace.md
1603
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-namespace.md
1604
1604
  */
1605
1605
  'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
1606
1606
  /**
1607
1607
  * Forbid Node.js builtin modules.
1608
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-nodejs-modules.md
1608
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-nodejs-modules.md
1609
1609
  */
1610
1610
  'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
1611
1611
  /**
1612
1612
  * Forbid importing packages through relative paths.
1613
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-relative-packages.md
1613
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-relative-packages.md
1614
1614
  */
1615
1615
  'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
1616
1616
  /**
1617
1617
  * Forbid importing modules from parent directories.
1618
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-relative-parent-imports.md
1618
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-relative-parent-imports.md
1619
1619
  */
1620
1620
  'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
1621
1621
  /**
1622
1622
  * Forbid importing a default export by a different name.
1623
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-rename-default.md
1623
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-rename-default.md
1624
1624
  */
1625
1625
  'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
1626
1626
  /**
1627
1627
  * Enforce which files can be imported in a given folder.
1628
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-restricted-paths.md
1628
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-restricted-paths.md
1629
1629
  */
1630
1630
  'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
1631
1631
  /**
1632
1632
  * Forbid a module from importing itself.
1633
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-self-import.md
1633
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-self-import.md
1634
1634
  */
1635
1635
  'import/no-self-import'?: Linter.RuleEntry<[]>
1636
1636
  /**
1637
1637
  * Forbid unassigned imports.
1638
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-unassigned-import.md
1638
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-unassigned-import.md
1639
1639
  */
1640
1640
  'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
1641
1641
  /**
1642
1642
  * Ensure imports point to a file/module that can be resolved.
1643
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-unresolved.md
1643
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-unresolved.md
1644
1644
  */
1645
1645
  'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
1646
1646
  /**
1647
1647
  * Forbid modules without exports, or exports without matching import in another module.
1648
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-unused-modules.md
1648
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-unused-modules.md
1649
1649
  */
1650
1650
  'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
1651
1651
  /**
1652
1652
  * Forbid unnecessary path segments in import and require statements.
1653
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-useless-path-segments.md
1653
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-useless-path-segments.md
1654
1654
  */
1655
1655
  'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
1656
1656
  /**
1657
1657
  * Forbid webpack loader syntax in imports.
1658
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/no-webpack-loader-syntax.md
1658
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/no-webpack-loader-syntax.md
1659
1659
  */
1660
1660
  'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
1661
1661
  /**
1662
1662
  * Enforce a convention in module import order.
1663
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/order.md
1663
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/order.md
1664
1664
  */
1665
1665
  'import/order'?: Linter.RuleEntry<ImportOrder>
1666
1666
  /**
1667
1667
  * Prefer a default export if module exports a single name or multiple names.
1668
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/prefer-default-export.md
1668
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/prefer-default-export.md
1669
1669
  */
1670
1670
  'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
1671
1671
  /**
1672
1672
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
1673
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.1/docs/rules/unambiguous.md
1673
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.12.2/docs/rules/unambiguous.md
1674
1674
  */
1675
1675
  'import/unambiguous'?: Linter.RuleEntry<[]>
1676
1676
  /**
@@ -8604,6 +8604,14 @@ type ImportExtensions = ([]|[("always" | "ignorePackages" | "never")] | []|[("al
8604
8604
  }
8605
8605
  ignorePackages?: boolean
8606
8606
  checkTypeImports?: boolean
8607
+ pathGroupOverrides?: {
8608
+ pattern: string
8609
+ patternOptions?: {
8610
+ [k: string]: unknown | undefined
8611
+ }
8612
+ action: ("enforce" | "ignore")
8613
+ }[]
8614
+ fix?: boolean
8607
8615
  [k: string]: unknown | undefined
8608
8616
  }] | []|[{
8609
8617
  pattern?: {
@@ -8611,6 +8619,14 @@ type ImportExtensions = ([]|[("always" | "ignorePackages" | "never")] | []|[("al
8611
8619
  }
8612
8620
  ignorePackages?: boolean
8613
8621
  checkTypeImports?: boolean
8622
+ pathGroupOverrides?: {
8623
+ pattern: string
8624
+ patternOptions?: {
8625
+ [k: string]: unknown | undefined
8626
+ }
8627
+ action: ("enforce" | "ignore")
8628
+ }[]
8629
+ fix?: boolean
8614
8630
  [k: string]: unknown | undefined
8615
8631
  }] | []|[("always" | "ignorePackages" | "never")]|[("always" | "ignorePackages" | "never"), {
8616
8632
  [k: string]: ("always" | "ignorePackages" | "never")
@@ -11108,7 +11124,6 @@ type PerfectionistSortArrayIncludes = {
11108
11124
  order?: ("asc" | "desc")
11109
11125
 
11110
11126
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11111
- [k: string]: unknown | undefined
11112
11127
  }
11113
11128
 
11114
11129
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -11134,10 +11149,9 @@ type PerfectionistSortArrayIncludes = {
11134
11149
  order?: ("asc" | "desc")
11135
11150
 
11136
11151
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11137
- [k: string]: unknown | undefined
11138
11152
  }
11139
11153
 
11140
- groupName?: string
11154
+ groupName: string
11141
11155
 
11142
11156
  order?: ("asc" | "desc")
11143
11157
 
@@ -11147,10 +11161,14 @@ type PerfectionistSortArrayIncludes = {
11147
11161
  selector?: ("literal" | "spread")
11148
11162
 
11149
11163
  elementNamePattern?: (({
11150
- pattern?: string
11164
+
11165
+ pattern: string
11166
+
11151
11167
  flags?: string
11152
11168
  } | string)[] | ({
11153
- pattern?: string
11169
+
11170
+ pattern: string
11171
+
11154
11172
  flags?: string
11155
11173
  } | string))
11156
11174
  }[]
@@ -11163,10 +11181,9 @@ type PerfectionistSortArrayIncludes = {
11163
11181
  order?: ("asc" | "desc")
11164
11182
 
11165
11183
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11166
- [k: string]: unknown | undefined
11167
11184
  }
11168
11185
 
11169
- groupName?: string
11186
+ groupName: string
11170
11187
 
11171
11188
  order?: ("asc" | "desc")
11172
11189
 
@@ -11175,43 +11192,66 @@ type PerfectionistSortArrayIncludes = {
11175
11192
  selector?: ("literal" | "spread")
11176
11193
 
11177
11194
  elementNamePattern?: (({
11178
- pattern?: string
11195
+
11196
+ pattern: string
11197
+
11179
11198
  flags?: string
11180
11199
  } | string)[] | ({
11181
- pattern?: string
11200
+
11201
+ pattern: string
11202
+
11182
11203
  flags?: string
11183
11204
  } | string))
11184
11205
  })[]
11206
+
11185
11207
  useConfigurationIf?: {
11186
11208
 
11187
11209
  allNamesMatchPattern?: (({
11188
- pattern?: string
11210
+
11211
+ pattern: string
11212
+
11189
11213
  flags?: string
11190
11214
  } | string)[] | ({
11191
- pattern?: string
11215
+
11216
+ pattern: string
11217
+
11192
11218
  flags?: string
11193
11219
  } | string))
11194
11220
  }
11195
11221
 
11196
11222
  partitionByComment?: (boolean | (({
11197
- pattern?: string
11223
+
11224
+ pattern: string
11225
+
11198
11226
  flags?: string
11199
11227
  } | string)[] | ({
11200
- pattern?: string
11228
+
11229
+ pattern: string
11230
+
11201
11231
  flags?: string
11202
11232
  } | string)) | {
11233
+
11203
11234
  block?: (boolean | (({
11204
- pattern?: string
11235
+
11236
+ pattern: string
11237
+
11205
11238
  flags?: string
11206
11239
  } | string)[] | ({
11207
- pattern?: string
11240
+
11241
+ pattern: string
11242
+
11208
11243
  flags?: string
11209
11244
  } | string)))
11245
+
11210
11246
  line?: (boolean | (({
11211
- pattern?: string
11247
+
11248
+ pattern: string
11249
+
11212
11250
  flags?: string
11213
11251
  } | string)[] | ({
11214
- pattern?: string
11252
+
11253
+ pattern: string
11254
+
11215
11255
  flags?: string
11216
11256
  } | string)))
11217
11257
  })
@@ -11222,7 +11262,7 @@ type PerfectionistSortArrayIncludes = {
11222
11262
 
11223
11263
  groups?: (string | string[] | {
11224
11264
 
11225
- newlinesBetween?: ("ignore" | "always" | "never")
11265
+ newlinesBetween: ("ignore" | "always" | "never")
11226
11266
  })[]
11227
11267
  }[]
11228
11268
  // ----- perfectionist/sort-classes -----
@@ -11233,7 +11273,6 @@ type PerfectionistSortClasses = []|[{
11233
11273
  order?: ("asc" | "desc")
11234
11274
 
11235
11275
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11236
- [k: string]: unknown | undefined
11237
11276
  }
11238
11277
 
11239
11278
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -11257,10 +11296,9 @@ type PerfectionistSortClasses = []|[{
11257
11296
  order?: ("asc" | "desc")
11258
11297
 
11259
11298
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11260
- [k: string]: unknown | undefined
11261
11299
  }
11262
11300
 
11263
- groupName?: string
11301
+ groupName: string
11264
11302
 
11265
11303
  order?: ("asc" | "desc")
11266
11304
 
@@ -11272,26 +11310,38 @@ type PerfectionistSortClasses = []|[{
11272
11310
  selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
11273
11311
 
11274
11312
  decoratorNamePattern?: (({
11275
- pattern?: string
11313
+
11314
+ pattern: string
11315
+
11276
11316
  flags?: string
11277
11317
  } | string)[] | ({
11278
- pattern?: string
11318
+
11319
+ pattern: string
11320
+
11279
11321
  flags?: string
11280
11322
  } | string))
11281
11323
 
11282
11324
  elementValuePattern?: (({
11283
- pattern?: string
11325
+
11326
+ pattern: string
11327
+
11284
11328
  flags?: string
11285
11329
  } | string)[] | ({
11286
- pattern?: string
11330
+
11331
+ pattern: string
11332
+
11287
11333
  flags?: string
11288
11334
  } | string))
11289
11335
 
11290
11336
  elementNamePattern?: (({
11291
- pattern?: string
11337
+
11338
+ pattern: string
11339
+
11292
11340
  flags?: string
11293
11341
  } | string)[] | ({
11294
- pattern?: string
11342
+
11343
+ pattern: string
11344
+
11295
11345
  flags?: string
11296
11346
  } | string))
11297
11347
  }[]
@@ -11304,10 +11354,9 @@ type PerfectionistSortClasses = []|[{
11304
11354
  order?: ("asc" | "desc")
11305
11355
 
11306
11356
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11307
- [k: string]: unknown | undefined
11308
11357
  }
11309
11358
 
11310
- groupName?: string
11359
+ groupName: string
11311
11360
 
11312
11361
  order?: ("asc" | "desc")
11313
11362
 
@@ -11318,57 +11367,87 @@ type PerfectionistSortClasses = []|[{
11318
11367
  selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
11319
11368
 
11320
11369
  decoratorNamePattern?: (({
11321
- pattern?: string
11370
+
11371
+ pattern: string
11372
+
11322
11373
  flags?: string
11323
11374
  } | string)[] | ({
11324
- pattern?: string
11375
+
11376
+ pattern: string
11377
+
11325
11378
  flags?: string
11326
11379
  } | string))
11327
11380
 
11328
11381
  elementValuePattern?: (({
11329
- pattern?: string
11382
+
11383
+ pattern: string
11384
+
11330
11385
  flags?: string
11331
11386
  } | string)[] | ({
11332
- pattern?: string
11387
+
11388
+ pattern: string
11389
+
11333
11390
  flags?: string
11334
11391
  } | string))
11335
11392
 
11336
11393
  elementNamePattern?: (({
11337
- pattern?: string
11394
+
11395
+ pattern: string
11396
+
11338
11397
  flags?: string
11339
11398
  } | string)[] | ({
11340
- pattern?: string
11399
+
11400
+ pattern: string
11401
+
11341
11402
  flags?: string
11342
11403
  } | string))
11343
11404
  })[]
11344
11405
 
11345
11406
  ignoreCallbackDependenciesPatterns?: (({
11346
- pattern?: string
11407
+
11408
+ pattern: string
11409
+
11347
11410
  flags?: string
11348
11411
  } | string)[] | ({
11349
- pattern?: string
11412
+
11413
+ pattern: string
11414
+
11350
11415
  flags?: string
11351
11416
  } | string))
11352
11417
 
11353
11418
  partitionByComment?: (boolean | (({
11354
- pattern?: string
11419
+
11420
+ pattern: string
11421
+
11355
11422
  flags?: string
11356
11423
  } | string)[] | ({
11357
- pattern?: string
11424
+
11425
+ pattern: string
11426
+
11358
11427
  flags?: string
11359
11428
  } | string)) | {
11429
+
11360
11430
  block?: (boolean | (({
11361
- pattern?: string
11431
+
11432
+ pattern: string
11433
+
11362
11434
  flags?: string
11363
11435
  } | string)[] | ({
11364
- pattern?: string
11436
+
11437
+ pattern: string
11438
+
11365
11439
  flags?: string
11366
11440
  } | string)))
11441
+
11367
11442
  line?: (boolean | (({
11368
- pattern?: string
11443
+
11444
+ pattern: string
11445
+
11369
11446
  flags?: string
11370
11447
  } | string)[] | ({
11371
- pattern?: string
11448
+
11449
+ pattern: string
11450
+
11372
11451
  flags?: string
11373
11452
  } | string)))
11374
11453
  })
@@ -11379,7 +11458,7 @@ type PerfectionistSortClasses = []|[{
11379
11458
 
11380
11459
  groups?: (string | string[] | {
11381
11460
 
11382
- newlinesBetween?: ("ignore" | "always" | "never")
11461
+ newlinesBetween: ("ignore" | "always" | "never")
11383
11462
  })[]
11384
11463
  }]
11385
11464
  // ----- perfectionist/sort-decorators -----
@@ -11390,7 +11469,6 @@ type PerfectionistSortDecorators = []|[{
11390
11469
  order?: ("asc" | "desc")
11391
11470
 
11392
11471
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11393
- [k: string]: unknown | undefined
11394
11472
  }
11395
11473
 
11396
11474
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -11416,24 +11494,38 @@ type PerfectionistSortDecorators = []|[{
11416
11494
  sortOnClasses?: boolean
11417
11495
 
11418
11496
  partitionByComment?: (boolean | (({
11419
- pattern?: string
11497
+
11498
+ pattern: string
11499
+
11420
11500
  flags?: string
11421
11501
  } | string)[] | ({
11422
- pattern?: string
11502
+
11503
+ pattern: string
11504
+
11423
11505
  flags?: string
11424
11506
  } | string)) | {
11507
+
11425
11508
  block?: (boolean | (({
11426
- pattern?: string
11509
+
11510
+ pattern: string
11511
+
11427
11512
  flags?: string
11428
11513
  } | string)[] | ({
11429
- pattern?: string
11514
+
11515
+ pattern: string
11516
+
11430
11517
  flags?: string
11431
11518
  } | string)))
11519
+
11432
11520
  line?: (boolean | (({
11433
- pattern?: string
11521
+
11522
+ pattern: string
11523
+
11434
11524
  flags?: string
11435
11525
  } | string)[] | ({
11436
- pattern?: string
11526
+
11527
+ pattern: string
11528
+
11437
11529
  flags?: string
11438
11530
  } | string)))
11439
11531
  })
@@ -11444,7 +11536,7 @@ type PerfectionistSortDecorators = []|[{
11444
11536
 
11445
11537
  groups?: (string | string[] | {
11446
11538
 
11447
- newlinesBetween?: ("ignore" | "always" | "never")
11539
+ newlinesBetween: ("ignore" | "always" | "never")
11448
11540
  })[]
11449
11541
  }]
11450
11542
  // ----- perfectionist/sort-enums -----
@@ -11455,7 +11547,6 @@ type PerfectionistSortEnums = []|[{
11455
11547
  order?: ("asc" | "desc")
11456
11548
 
11457
11549
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11458
- [k: string]: unknown | undefined
11459
11550
  }
11460
11551
 
11461
11552
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -11469,8 +11560,6 @@ type PerfectionistSortEnums = []|[{
11469
11560
  order?: ("asc" | "desc")
11470
11561
 
11471
11562
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11472
-
11473
- forceNumericSort?: boolean
11474
11563
  customGroups?: ({
11475
11564
  [k: string]: (string | string[]) | undefined
11476
11565
  } | ({
@@ -11482,10 +11571,9 @@ type PerfectionistSortEnums = []|[{
11482
11571
  order?: ("asc" | "desc")
11483
11572
 
11484
11573
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11485
- [k: string]: unknown | undefined
11486
11574
  }
11487
11575
 
11488
- groupName?: string
11576
+ groupName: string
11489
11577
 
11490
11578
  order?: ("asc" | "desc")
11491
11579
 
@@ -11493,18 +11581,26 @@ type PerfectionistSortEnums = []|[{
11493
11581
  anyOf?: {
11494
11582
 
11495
11583
  elementValuePattern?: (({
11496
- pattern?: string
11584
+
11585
+ pattern: string
11586
+
11497
11587
  flags?: string
11498
11588
  } | string)[] | ({
11499
- pattern?: string
11589
+
11590
+ pattern: string
11591
+
11500
11592
  flags?: string
11501
11593
  } | string))
11502
11594
 
11503
11595
  elementNamePattern?: (({
11504
- pattern?: string
11596
+
11597
+ pattern: string
11598
+
11505
11599
  flags?: string
11506
11600
  } | string)[] | ({
11507
- pattern?: string
11601
+
11602
+ pattern: string
11603
+
11508
11604
  flags?: string
11509
11605
  } | string))
11510
11606
  }[]
@@ -11517,53 +11613,76 @@ type PerfectionistSortEnums = []|[{
11517
11613
  order?: ("asc" | "desc")
11518
11614
 
11519
11615
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11520
- [k: string]: unknown | undefined
11521
11616
  }
11522
11617
 
11523
- groupName?: string
11618
+ groupName: string
11524
11619
 
11525
11620
  order?: ("asc" | "desc")
11526
11621
 
11527
11622
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11528
11623
 
11529
11624
  elementValuePattern?: (({
11530
- pattern?: string
11625
+
11626
+ pattern: string
11627
+
11531
11628
  flags?: string
11532
11629
  } | string)[] | ({
11533
- pattern?: string
11630
+
11631
+ pattern: string
11632
+
11534
11633
  flags?: string
11535
11634
  } | string))
11536
11635
 
11537
11636
  elementNamePattern?: (({
11538
- pattern?: string
11637
+
11638
+ pattern: string
11639
+
11539
11640
  flags?: string
11540
11641
  } | string)[] | ({
11541
- pattern?: string
11642
+
11643
+ pattern: string
11644
+
11542
11645
  flags?: string
11543
11646
  } | string))
11544
11647
  })[])
11545
11648
 
11649
+ forceNumericSort?: boolean
11650
+
11546
11651
  sortByValue?: boolean
11547
11652
 
11548
11653
  partitionByComment?: (boolean | (({
11549
- pattern?: string
11654
+
11655
+ pattern: string
11656
+
11550
11657
  flags?: string
11551
11658
  } | string)[] | ({
11552
- pattern?: string
11659
+
11660
+ pattern: string
11661
+
11553
11662
  flags?: string
11554
11663
  } | string)) | {
11664
+
11555
11665
  block?: (boolean | (({
11556
- pattern?: string
11666
+
11667
+ pattern: string
11668
+
11557
11669
  flags?: string
11558
11670
  } | string)[] | ({
11559
- pattern?: string
11671
+
11672
+ pattern: string
11673
+
11560
11674
  flags?: string
11561
11675
  } | string)))
11676
+
11562
11677
  line?: (boolean | (({
11563
- pattern?: string
11678
+
11679
+ pattern: string
11680
+
11564
11681
  flags?: string
11565
11682
  } | string)[] | ({
11566
- pattern?: string
11683
+
11684
+ pattern: string
11685
+
11567
11686
  flags?: string
11568
11687
  } | string)))
11569
11688
  })
@@ -11574,7 +11693,7 @@ type PerfectionistSortEnums = []|[{
11574
11693
 
11575
11694
  groups?: (string | string[] | {
11576
11695
 
11577
- newlinesBetween?: ("ignore" | "always" | "never")
11696
+ newlinesBetween: ("ignore" | "always" | "never")
11578
11697
  })[]
11579
11698
  }]
11580
11699
  // ----- perfectionist/sort-exports -----
@@ -11585,7 +11704,6 @@ type PerfectionistSortExports = {
11585
11704
  order?: ("asc" | "desc")
11586
11705
 
11587
11706
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11588
- [k: string]: unknown | undefined
11589
11707
  }
11590
11708
 
11591
11709
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -11611,10 +11729,9 @@ type PerfectionistSortExports = {
11611
11729
  order?: ("asc" | "desc")
11612
11730
 
11613
11731
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11614
- [k: string]: unknown | undefined
11615
11732
  }
11616
11733
 
11617
- groupName?: string
11734
+ groupName: string
11618
11735
 
11619
11736
  order?: ("asc" | "desc")
11620
11737
 
@@ -11626,10 +11743,14 @@ type PerfectionistSortExports = {
11626
11743
  selector?: "export"
11627
11744
 
11628
11745
  elementNamePattern?: (({
11629
- pattern?: string
11746
+
11747
+ pattern: string
11748
+
11630
11749
  flags?: string
11631
11750
  } | string)[] | ({
11632
- pattern?: string
11751
+
11752
+ pattern: string
11753
+
11633
11754
  flags?: string
11634
11755
  } | string))
11635
11756
  }[]
@@ -11642,10 +11763,9 @@ type PerfectionistSortExports = {
11642
11763
  order?: ("asc" | "desc")
11643
11764
 
11644
11765
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11645
- [k: string]: unknown | undefined
11646
11766
  }
11647
11767
 
11648
- groupName?: string
11768
+ groupName: string
11649
11769
 
11650
11770
  order?: ("asc" | "desc")
11651
11771
 
@@ -11656,33 +11776,51 @@ type PerfectionistSortExports = {
11656
11776
  selector?: "export"
11657
11777
 
11658
11778
  elementNamePattern?: (({
11659
- pattern?: string
11779
+
11780
+ pattern: string
11781
+
11660
11782
  flags?: string
11661
11783
  } | string)[] | ({
11662
- pattern?: string
11784
+
11785
+ pattern: string
11786
+
11663
11787
  flags?: string
11664
11788
  } | string))
11665
11789
  })[]
11666
11790
 
11667
11791
  partitionByComment?: (boolean | (({
11668
- pattern?: string
11792
+
11793
+ pattern: string
11794
+
11669
11795
  flags?: string
11670
11796
  } | string)[] | ({
11671
- pattern?: string
11797
+
11798
+ pattern: string
11799
+
11672
11800
  flags?: string
11673
11801
  } | string)) | {
11802
+
11674
11803
  block?: (boolean | (({
11675
- pattern?: string
11804
+
11805
+ pattern: string
11806
+
11676
11807
  flags?: string
11677
11808
  } | string)[] | ({
11678
- pattern?: string
11809
+
11810
+ pattern: string
11811
+
11679
11812
  flags?: string
11680
11813
  } | string)))
11814
+
11681
11815
  line?: (boolean | (({
11682
- pattern?: string
11816
+
11817
+ pattern: string
11818
+
11683
11819
  flags?: string
11684
11820
  } | string)[] | ({
11685
- pattern?: string
11821
+
11822
+ pattern: string
11823
+
11686
11824
  flags?: string
11687
11825
  } | string)))
11688
11826
  })
@@ -11693,7 +11831,7 @@ type PerfectionistSortExports = {
11693
11831
 
11694
11832
  groups?: (string | string[] | {
11695
11833
 
11696
- newlinesBetween?: ("ignore" | "always" | "never")
11834
+ newlinesBetween: ("ignore" | "always" | "never")
11697
11835
  })[]
11698
11836
  }[]
11699
11837
  // ----- perfectionist/sort-heritage-clauses -----
@@ -11704,7 +11842,6 @@ type PerfectionistSortHeritageClauses = []|[{
11704
11842
  order?: ("asc" | "desc")
11705
11843
 
11706
11844
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11707
- [k: string]: unknown | undefined
11708
11845
  }
11709
11846
 
11710
11847
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -11725,18 +11862,17 @@ type PerfectionistSortHeritageClauses = []|[{
11725
11862
 
11726
11863
  groups?: (string | string[] | {
11727
11864
 
11728
- newlinesBetween?: ("ignore" | "always" | "never")
11865
+ newlinesBetween: ("ignore" | "always" | "never")
11729
11866
  })[]
11730
11867
  }]
11731
- // ----- perfectionist/sort-interfaces -----
11732
- type PerfectionistSortInterfaces = {
11868
+ // ----- perfectionist/sort-imports -----
11869
+ type PerfectionistSortImports = {
11733
11870
 
11734
11871
  fallbackSort?: {
11735
11872
 
11736
11873
  order?: ("asc" | "desc")
11737
11874
 
11738
11875
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11739
- [k: string]: unknown | undefined
11740
11876
  }
11741
11877
 
11742
11878
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -11751,7 +11887,14 @@ type PerfectionistSortInterfaces = {
11751
11887
 
11752
11888
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11753
11889
  customGroups?: ({
11754
- [k: string]: (string | string[]) | undefined
11890
+
11891
+ value?: {
11892
+ [k: string]: (string | string[]) | undefined
11893
+ }
11894
+
11895
+ type?: {
11896
+ [k: string]: (string | string[]) | undefined
11897
+ }
11755
11898
  } | ({
11756
11899
 
11757
11900
  newlinesInside?: ("always" | "never")
@@ -11761,37 +11904,42 @@ type PerfectionistSortInterfaces = {
11761
11904
  order?: ("asc" | "desc")
11762
11905
 
11763
11906
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11764
- sortBy?: ("name" | "value")
11765
- [k: string]: unknown | undefined
11766
11907
  }
11767
11908
 
11768
- groupName?: string
11909
+ groupName: string
11769
11910
 
11770
11911
  order?: ("asc" | "desc")
11771
11912
 
11772
11913
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11773
11914
  anyOf?: {
11774
11915
 
11775
- modifiers?: ("optional" | "required" | "multiline")[]
11916
+ modifiers?: ("default" | "named" | "require" | "side-effect" | "ts-equals" | "type" | "value" | "wildcard")[]
11776
11917
 
11777
- selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
11918
+ selector?: ("side-effect-style" | "tsconfig-path" | "side-effect" | "external" | "internal" | "builtin" | "sibling" | "subpath" | "import" | "parent" | "index" | "style" | "type")
11778
11919
 
11779
11920
  elementValuePattern?: (({
11780
- pattern?: string
11921
+
11922
+ pattern: string
11923
+
11781
11924
  flags?: string
11782
11925
  } | string)[] | ({
11783
- pattern?: string
11926
+
11927
+ pattern: string
11928
+
11784
11929
  flags?: string
11785
11930
  } | string))
11786
11931
 
11787
11932
  elementNamePattern?: (({
11788
- pattern?: string
11933
+
11934
+ pattern: string
11935
+
11789
11936
  flags?: string
11790
11937
  } | string)[] | ({
11791
- pattern?: string
11938
+
11939
+ pattern: string
11940
+
11792
11941
  flags?: string
11793
11942
  } | string))
11794
- sortBy?: ("name" | "value")
11795
11943
  }[]
11796
11944
  } | {
11797
11945
 
@@ -11802,77 +11950,84 @@ type PerfectionistSortInterfaces = {
11802
11950
  order?: ("asc" | "desc")
11803
11951
 
11804
11952
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11805
- sortBy?: ("name" | "value")
11806
- [k: string]: unknown | undefined
11807
11953
  }
11808
11954
 
11809
- groupName?: string
11955
+ groupName: string
11810
11956
 
11811
11957
  order?: ("asc" | "desc")
11812
11958
 
11813
11959
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11814
11960
 
11815
- modifiers?: ("optional" | "required" | "multiline")[]
11961
+ modifiers?: ("default" | "named" | "require" | "side-effect" | "ts-equals" | "type" | "value" | "wildcard")[]
11816
11962
 
11817
- selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
11963
+ selector?: ("side-effect-style" | "tsconfig-path" | "side-effect" | "external" | "internal" | "builtin" | "sibling" | "subpath" | "import" | "parent" | "index" | "style" | "type")
11818
11964
 
11819
11965
  elementValuePattern?: (({
11820
- pattern?: string
11966
+
11967
+ pattern: string
11968
+
11821
11969
  flags?: string
11822
11970
  } | string)[] | ({
11823
- pattern?: string
11971
+
11972
+ pattern: string
11973
+
11824
11974
  flags?: string
11825
11975
  } | string))
11826
11976
 
11827
11977
  elementNamePattern?: (({
11828
- pattern?: string
11978
+
11979
+ pattern: string
11980
+
11829
11981
  flags?: string
11830
11982
  } | string)[] | ({
11831
- pattern?: string
11983
+
11984
+ pattern: string
11985
+
11832
11986
  flags?: string
11833
11987
  } | string))
11834
- sortBy?: ("name" | "value")
11835
11988
  })[])
11836
11989
 
11837
- groupKind?: ("mixed" | "required-first" | "optional-first")
11838
- useConfigurationIf?: {
11839
-
11840
- allNamesMatchPattern?: (({
11841
- pattern?: string
11842
- flags?: string
11843
- } | string)[] | ({
11844
- pattern?: string
11845
- flags?: string
11846
- } | string))
11847
-
11848
- declarationMatchesPattern?: (({
11849
- pattern?: string
11850
- flags?: string
11851
- } | string)[] | ({
11852
- pattern?: string
11853
- flags?: string
11854
- } | string))
11855
- }
11990
+ maxLineLength?: number
11991
+
11992
+ sortSideEffects?: boolean
11993
+
11994
+ environment?: ("node" | "bun")
11995
+
11996
+ tsconfigRootDir?: string
11856
11997
 
11857
11998
  partitionByComment?: (boolean | (({
11858
- pattern?: string
11999
+
12000
+ pattern: string
12001
+
11859
12002
  flags?: string
11860
12003
  } | string)[] | ({
11861
- pattern?: string
12004
+
12005
+ pattern: string
12006
+
11862
12007
  flags?: string
11863
12008
  } | string)) | {
12009
+
11864
12010
  block?: (boolean | (({
11865
- pattern?: string
12011
+
12012
+ pattern: string
12013
+
11866
12014
  flags?: string
11867
12015
  } | string)[] | ({
11868
- pattern?: string
12016
+
12017
+ pattern: string
12018
+
11869
12019
  flags?: string
11870
12020
  } | string)))
12021
+
11871
12022
  line?: (boolean | (({
11872
- pattern?: string
12023
+
12024
+ pattern: string
12025
+
11873
12026
  flags?: string
11874
12027
  } | string)[] | ({
11875
- pattern?: string
12028
+
12029
+ pattern: string
12030
+
11876
12031
  flags?: string
11877
12032
  } | string)))
11878
12033
  })
@@ -11881,29 +12036,32 @@ type PerfectionistSortInterfaces = {
11881
12036
 
11882
12037
  newlinesBetween?: ("ignore" | "always" | "never")
11883
12038
 
11884
- ignorePattern?: (({
11885
- pattern?: string
12039
+ internalPattern?: (({
12040
+
12041
+ pattern: string
12042
+
11886
12043
  flags?: string
11887
12044
  } | string)[] | ({
11888
- pattern?: string
12045
+
12046
+ pattern: string
12047
+
11889
12048
  flags?: string
11890
12049
  } | string))
11891
- sortBy?: ("name" | "value")
11892
12050
 
11893
12051
  groups?: (string | string[] | {
11894
12052
 
11895
- newlinesBetween?: ("ignore" | "always" | "never")
12053
+ newlinesBetween: ("ignore" | "always" | "never")
11896
12054
  })[]
11897
12055
  }[]
11898
- // ----- perfectionist/sort-intersection-types -----
11899
- type PerfectionistSortIntersectionTypes = []|[{
12056
+ // ----- perfectionist/sort-interfaces -----
12057
+ type PerfectionistSortInterfaces = {
11900
12058
 
11901
12059
  fallbackSort?: {
11902
12060
 
11903
12061
  order?: ("asc" | "desc")
11904
12062
 
11905
12063
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11906
- [k: string]: unknown | undefined
12064
+ sortBy?: ("name" | "value")
11907
12065
  }
11908
12066
 
11909
12067
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -11917,48 +12075,332 @@ type PerfectionistSortIntersectionTypes = []|[{
11917
12075
  order?: ("asc" | "desc")
11918
12076
 
11919
12077
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11920
-
11921
- partitionByComment?: (boolean | (({
11922
- pattern?: string
11923
- flags?: string
11924
- } | string)[] | ({
11925
- pattern?: string
11926
- flags?: string
11927
- } | string)) | {
11928
- block?: (boolean | (({
11929
- pattern?: string
11930
- flags?: string
11931
- } | string)[] | ({
11932
- pattern?: string
11933
- flags?: string
11934
- } | string)))
11935
- line?: (boolean | (({
11936
- pattern?: string
11937
- flags?: string
11938
- } | string)[] | ({
11939
- pattern?: string
11940
- flags?: string
11941
- } | string)))
11942
- })
11943
-
11944
- partitionByNewLine?: boolean
11945
-
11946
- newlinesBetween?: ("ignore" | "always" | "never")
11947
-
11948
- groups?: (string | string[] | {
12078
+ customGroups?: ({
12079
+ [k: string]: (string | string[]) | undefined
12080
+ } | ({
11949
12081
 
11950
- newlinesBetween?: ("ignore" | "always" | "never")
11951
- })[]
11952
- }]
11953
- // ----- perfectionist/sort-jsx-props -----
11954
- type PerfectionistSortJsxProps = {
11955
-
11956
- fallbackSort?: {
12082
+ newlinesInside?: ("always" | "never")
12083
+
12084
+ fallbackSort?: {
12085
+
12086
+ order?: ("asc" | "desc")
12087
+
12088
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12089
+ sortBy?: ("name" | "value")
12090
+ }
12091
+
12092
+ groupName: string
12093
+
12094
+ order?: ("asc" | "desc")
12095
+
12096
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12097
+ anyOf?: {
12098
+
12099
+ modifiers?: ("optional" | "required" | "multiline")[]
12100
+
12101
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
12102
+
12103
+ elementValuePattern?: (({
12104
+
12105
+ pattern: string
12106
+
12107
+ flags?: string
12108
+ } | string)[] | ({
12109
+
12110
+ pattern: string
12111
+
12112
+ flags?: string
12113
+ } | string))
12114
+
12115
+ elementNamePattern?: (({
12116
+
12117
+ pattern: string
12118
+
12119
+ flags?: string
12120
+ } | string)[] | ({
12121
+
12122
+ pattern: string
12123
+
12124
+ flags?: string
12125
+ } | string))
12126
+ sortBy?: ("name" | "value")
12127
+ }[]
12128
+ } | {
12129
+
12130
+ newlinesInside?: ("always" | "never")
12131
+
12132
+ fallbackSort?: {
12133
+
12134
+ order?: ("asc" | "desc")
12135
+
12136
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12137
+ sortBy?: ("name" | "value")
12138
+ }
12139
+
12140
+ groupName: string
12141
+
12142
+ order?: ("asc" | "desc")
12143
+
12144
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12145
+
12146
+ modifiers?: ("optional" | "required" | "multiline")[]
12147
+
12148
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
12149
+
12150
+ elementValuePattern?: (({
12151
+
12152
+ pattern: string
12153
+
12154
+ flags?: string
12155
+ } | string)[] | ({
12156
+
12157
+ pattern: string
12158
+
12159
+ flags?: string
12160
+ } | string))
12161
+
12162
+ elementNamePattern?: (({
12163
+
12164
+ pattern: string
12165
+
12166
+ flags?: string
12167
+ } | string)[] | ({
12168
+
12169
+ pattern: string
12170
+
12171
+ flags?: string
12172
+ } | string))
12173
+ sortBy?: ("name" | "value")
12174
+ })[])
12175
+
12176
+ groupKind?: ("mixed" | "required-first" | "optional-first")
12177
+
12178
+ useConfigurationIf?: {
12179
+
12180
+ allNamesMatchPattern?: (({
12181
+
12182
+ pattern: string
12183
+
12184
+ flags?: string
12185
+ } | string)[] | ({
12186
+
12187
+ pattern: string
12188
+
12189
+ flags?: string
12190
+ } | string))
12191
+
12192
+ declarationMatchesPattern?: (({
12193
+
12194
+ pattern: string
12195
+
12196
+ flags?: string
12197
+ } | string)[] | ({
12198
+
12199
+ pattern: string
12200
+
12201
+ flags?: string
12202
+ } | string))
12203
+ }
12204
+
12205
+ partitionByComment?: (boolean | (({
12206
+
12207
+ pattern: string
12208
+
12209
+ flags?: string
12210
+ } | string)[] | ({
12211
+
12212
+ pattern: string
12213
+
12214
+ flags?: string
12215
+ } | string)) | {
12216
+
12217
+ block?: (boolean | (({
12218
+
12219
+ pattern: string
12220
+
12221
+ flags?: string
12222
+ } | string)[] | ({
12223
+
12224
+ pattern: string
12225
+
12226
+ flags?: string
12227
+ } | string)))
12228
+
12229
+ line?: (boolean | (({
12230
+
12231
+ pattern: string
12232
+
12233
+ flags?: string
12234
+ } | string)[] | ({
12235
+
12236
+ pattern: string
12237
+
12238
+ flags?: string
12239
+ } | string)))
12240
+ })
12241
+
12242
+ partitionByNewLine?: boolean
12243
+
12244
+ newlinesBetween?: ("ignore" | "always" | "never")
12245
+
12246
+ ignorePattern?: (({
12247
+
12248
+ pattern: string
12249
+
12250
+ flags?: string
12251
+ } | string)[] | ({
12252
+
12253
+ pattern: string
12254
+
12255
+ flags?: string
12256
+ } | string))
12257
+ sortBy?: ("name" | "value")
12258
+
12259
+ groups?: (string | string[] | {
12260
+
12261
+ newlinesBetween: ("ignore" | "always" | "never")
12262
+ })[]
12263
+ }[]
12264
+ // ----- perfectionist/sort-intersection-types -----
12265
+ type PerfectionistSortIntersectionTypes = {
12266
+
12267
+ fallbackSort?: {
12268
+
12269
+ order?: ("asc" | "desc")
12270
+
12271
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12272
+ }
12273
+
12274
+ specialCharacters?: ("remove" | "trim" | "keep")
12275
+
12276
+ ignoreCase?: boolean
12277
+
12278
+ alphabet?: string
12279
+
12280
+ locales?: (string | string[])
12281
+
12282
+ order?: ("asc" | "desc")
12283
+
12284
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12285
+
12286
+ customGroups?: ({
12287
+
12288
+ newlinesInside?: ("always" | "never")
12289
+
12290
+ fallbackSort?: {
12291
+
12292
+ order?: ("asc" | "desc")
12293
+
12294
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12295
+ }
12296
+
12297
+ groupName: string
12298
+
12299
+ order?: ("asc" | "desc")
12300
+
12301
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12302
+ anyOf?: {
12303
+
12304
+ selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
12305
+
12306
+ elementNamePattern?: (({
12307
+
12308
+ pattern: string
12309
+
12310
+ flags?: string
12311
+ } | string)[] | ({
12312
+
12313
+ pattern: string
12314
+
12315
+ flags?: string
12316
+ } | string))
12317
+ }[]
12318
+ } | {
12319
+
12320
+ newlinesInside?: ("always" | "never")
12321
+
12322
+ fallbackSort?: {
12323
+
12324
+ order?: ("asc" | "desc")
12325
+
12326
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12327
+ }
12328
+
12329
+ groupName: string
12330
+
12331
+ order?: ("asc" | "desc")
12332
+
12333
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12334
+
12335
+ selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
12336
+
12337
+ elementNamePattern?: (({
12338
+
12339
+ pattern: string
12340
+
12341
+ flags?: string
12342
+ } | string)[] | ({
12343
+
12344
+ pattern: string
12345
+
12346
+ flags?: string
12347
+ } | string))
12348
+ })[]
12349
+
12350
+ partitionByComment?: (boolean | (({
12351
+
12352
+ pattern: string
12353
+
12354
+ flags?: string
12355
+ } | string)[] | ({
12356
+
12357
+ pattern: string
12358
+
12359
+ flags?: string
12360
+ } | string)) | {
12361
+
12362
+ block?: (boolean | (({
12363
+
12364
+ pattern: string
12365
+
12366
+ flags?: string
12367
+ } | string)[] | ({
12368
+
12369
+ pattern: string
12370
+
12371
+ flags?: string
12372
+ } | string)))
12373
+
12374
+ line?: (boolean | (({
12375
+
12376
+ pattern: string
12377
+
12378
+ flags?: string
12379
+ } | string)[] | ({
12380
+
12381
+ pattern: string
12382
+
12383
+ flags?: string
12384
+ } | string)))
12385
+ })
12386
+
12387
+ partitionByNewLine?: boolean
12388
+
12389
+ newlinesBetween?: ("ignore" | "always" | "never")
12390
+
12391
+ groups?: (string | string[] | {
12392
+
12393
+ newlinesBetween: ("ignore" | "always" | "never")
12394
+ })[]
12395
+ }[]
12396
+ // ----- perfectionist/sort-jsx-props -----
12397
+ type PerfectionistSortJsxProps = {
12398
+
12399
+ fallbackSort?: {
11957
12400
 
11958
12401
  order?: ("asc" | "desc")
11959
12402
 
11960
12403
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11961
- [k: string]: unknown | undefined
11962
12404
  }
11963
12405
 
11964
12406
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -11983,10 +12425,9 @@ type PerfectionistSortJsxProps = {
11983
12425
  order?: ("asc" | "desc")
11984
12426
 
11985
12427
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11986
- [k: string]: unknown | undefined
11987
12428
  }
11988
12429
 
11989
- groupName?: string
12430
+ groupName: string
11990
12431
 
11991
12432
  order?: ("asc" | "desc")
11992
12433
 
@@ -11998,18 +12439,26 @@ type PerfectionistSortJsxProps = {
11998
12439
  selector?: ("multiline" | "prop" | "shorthand")
11999
12440
 
12000
12441
  elementValuePattern?: (({
12001
- pattern?: string
12442
+
12443
+ pattern: string
12444
+
12002
12445
  flags?: string
12003
12446
  } | string)[] | ({
12004
- pattern?: string
12447
+
12448
+ pattern: string
12449
+
12005
12450
  flags?: string
12006
12451
  } | string))
12007
12452
 
12008
12453
  elementNamePattern?: (({
12009
- pattern?: string
12454
+
12455
+ pattern: string
12456
+
12010
12457
  flags?: string
12011
12458
  } | string)[] | ({
12012
- pattern?: string
12459
+
12460
+ pattern: string
12461
+
12013
12462
  flags?: string
12014
12463
  } | string))
12015
12464
  }[]
@@ -12022,10 +12471,9 @@ type PerfectionistSortJsxProps = {
12022
12471
  order?: ("asc" | "desc")
12023
12472
 
12024
12473
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12025
- [k: string]: unknown | undefined
12026
12474
  }
12027
12475
 
12028
- groupName?: string
12476
+ groupName: string
12029
12477
 
12030
12478
  order?: ("asc" | "desc")
12031
12479
 
@@ -12036,36 +12484,53 @@ type PerfectionistSortJsxProps = {
12036
12484
  selector?: ("multiline" | "prop" | "shorthand")
12037
12485
 
12038
12486
  elementValuePattern?: (({
12039
- pattern?: string
12487
+
12488
+ pattern: string
12489
+
12040
12490
  flags?: string
12041
12491
  } | string)[] | ({
12042
- pattern?: string
12492
+
12493
+ pattern: string
12494
+
12043
12495
  flags?: string
12044
12496
  } | string))
12045
12497
 
12046
12498
  elementNamePattern?: (({
12047
- pattern?: string
12499
+
12500
+ pattern: string
12501
+
12048
12502
  flags?: string
12049
12503
  } | string)[] | ({
12050
- pattern?: string
12504
+
12505
+ pattern: string
12506
+
12051
12507
  flags?: string
12052
12508
  } | string))
12053
12509
  })[])
12510
+
12054
12511
  useConfigurationIf?: {
12055
12512
 
12056
12513
  allNamesMatchPattern?: (({
12057
- pattern?: string
12514
+
12515
+ pattern: string
12516
+
12058
12517
  flags?: string
12059
12518
  } | string)[] | ({
12060
- pattern?: string
12519
+
12520
+ pattern: string
12521
+
12061
12522
  flags?: string
12062
12523
  } | string))
12063
12524
 
12064
12525
  tagMatchesPattern?: (({
12065
- pattern?: string
12526
+
12527
+ pattern: string
12528
+
12066
12529
  flags?: string
12067
12530
  } | string)[] | ({
12068
- pattern?: string
12531
+
12532
+ pattern: string
12533
+
12069
12534
  flags?: string
12070
12535
  } | string))
12071
12536
  }
@@ -12075,16 +12540,20 @@ type PerfectionistSortJsxProps = {
12075
12540
  newlinesBetween?: ("ignore" | "always" | "never")
12076
12541
 
12077
12542
  ignorePattern?: (({
12078
- pattern?: string
12543
+
12544
+ pattern: string
12545
+
12079
12546
  flags?: string
12080
12547
  } | string)[] | ({
12081
- pattern?: string
12548
+
12549
+ pattern: string
12550
+
12082
12551
  flags?: string
12083
12552
  } | string))
12084
12553
 
12085
12554
  groups?: (string | string[] | {
12086
12555
 
12087
- newlinesBetween?: ("ignore" | "always" | "never")
12556
+ newlinesBetween: ("ignore" | "always" | "never")
12088
12557
  })[]
12089
12558
  }[]
12090
12559
  // ----- perfectionist/sort-maps -----
@@ -12095,7 +12564,6 @@ type PerfectionistSortMaps = {
12095
12564
  order?: ("asc" | "desc")
12096
12565
 
12097
12566
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12098
- [k: string]: unknown | undefined
12099
12567
  }
12100
12568
 
12101
12569
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -12119,10 +12587,9 @@ type PerfectionistSortMaps = {
12119
12587
  order?: ("asc" | "desc")
12120
12588
 
12121
12589
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12122
- [k: string]: unknown | undefined
12123
12590
  }
12124
12591
 
12125
- groupName?: string
12592
+ groupName: string
12126
12593
 
12127
12594
  order?: ("asc" | "desc")
12128
12595
 
@@ -12130,10 +12597,14 @@ type PerfectionistSortMaps = {
12130
12597
  anyOf?: {
12131
12598
 
12132
12599
  elementNamePattern?: (({
12133
- pattern?: string
12600
+
12601
+ pattern: string
12602
+
12134
12603
  flags?: string
12135
12604
  } | string)[] | ({
12136
- pattern?: string
12605
+
12606
+ pattern: string
12607
+
12137
12608
  flags?: string
12138
12609
  } | string))
12139
12610
  }[]
@@ -12146,53 +12617,75 @@ type PerfectionistSortMaps = {
12146
12617
  order?: ("asc" | "desc")
12147
12618
 
12148
12619
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12149
- [k: string]: unknown | undefined
12150
12620
  }
12151
12621
 
12152
- groupName?: string
12622
+ groupName: string
12153
12623
 
12154
12624
  order?: ("asc" | "desc")
12155
12625
 
12156
12626
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12157
12627
 
12158
12628
  elementNamePattern?: (({
12159
- pattern?: string
12629
+
12630
+ pattern: string
12631
+
12160
12632
  flags?: string
12161
12633
  } | string)[] | ({
12162
- pattern?: string
12634
+
12635
+ pattern: string
12636
+
12163
12637
  flags?: string
12164
12638
  } | string))
12165
12639
  })[]
12640
+
12166
12641
  useConfigurationIf?: {
12167
12642
 
12168
12643
  allNamesMatchPattern?: (({
12169
- pattern?: string
12644
+
12645
+ pattern: string
12646
+
12170
12647
  flags?: string
12171
12648
  } | string)[] | ({
12172
- pattern?: string
12649
+
12650
+ pattern: string
12651
+
12173
12652
  flags?: string
12174
12653
  } | string))
12175
12654
  }
12176
12655
 
12177
12656
  partitionByComment?: (boolean | (({
12178
- pattern?: string
12657
+
12658
+ pattern: string
12659
+
12179
12660
  flags?: string
12180
12661
  } | string)[] | ({
12181
- pattern?: string
12662
+
12663
+ pattern: string
12664
+
12182
12665
  flags?: string
12183
12666
  } | string)) | {
12667
+
12184
12668
  block?: (boolean | (({
12185
- pattern?: string
12669
+
12670
+ pattern: string
12671
+
12186
12672
  flags?: string
12187
12673
  } | string)[] | ({
12188
- pattern?: string
12674
+
12675
+ pattern: string
12676
+
12189
12677
  flags?: string
12190
12678
  } | string)))
12679
+
12191
12680
  line?: (boolean | (({
12192
- pattern?: string
12681
+
12682
+ pattern: string
12683
+
12193
12684
  flags?: string
12194
12685
  } | string)[] | ({
12195
- pattern?: string
12686
+
12687
+ pattern: string
12688
+
12196
12689
  flags?: string
12197
12690
  } | string)))
12198
12691
  })
@@ -12203,7 +12696,7 @@ type PerfectionistSortMaps = {
12203
12696
 
12204
12697
  groups?: (string | string[] | {
12205
12698
 
12206
- newlinesBetween?: ("ignore" | "always" | "never")
12699
+ newlinesBetween: ("ignore" | "always" | "never")
12207
12700
  })[]
12208
12701
  }[]
12209
12702
  // ----- perfectionist/sort-modules -----
@@ -12214,7 +12707,6 @@ type PerfectionistSortModules = []|[{
12214
12707
  order?: ("asc" | "desc")
12215
12708
 
12216
12709
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12217
- [k: string]: unknown | undefined
12218
12710
  }
12219
12711
 
12220
12712
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -12238,10 +12730,9 @@ type PerfectionistSortModules = []|[{
12238
12730
  order?: ("asc" | "desc")
12239
12731
 
12240
12732
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12241
- [k: string]: unknown | undefined
12242
12733
  }
12243
12734
 
12244
- groupName?: string
12735
+ groupName: string
12245
12736
 
12246
12737
  order?: ("asc" | "desc")
12247
12738
 
@@ -12253,18 +12744,26 @@ type PerfectionistSortModules = []|[{
12253
12744
  selector?: ("enum" | "function" | "interface" | "type" | "class")
12254
12745
 
12255
12746
  decoratorNamePattern?: (({
12256
- pattern?: string
12747
+
12748
+ pattern: string
12749
+
12257
12750
  flags?: string
12258
12751
  } | string)[] | ({
12259
- pattern?: string
12752
+
12753
+ pattern: string
12754
+
12260
12755
  flags?: string
12261
12756
  } | string))
12262
12757
 
12263
12758
  elementNamePattern?: (({
12264
- pattern?: string
12759
+
12760
+ pattern: string
12761
+
12265
12762
  flags?: string
12266
12763
  } | string)[] | ({
12267
- pattern?: string
12764
+
12765
+ pattern: string
12766
+
12268
12767
  flags?: string
12269
12768
  } | string))
12270
12769
  }[]
@@ -12277,10 +12776,9 @@ type PerfectionistSortModules = []|[{
12277
12776
  order?: ("asc" | "desc")
12278
12777
 
12279
12778
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12280
- [k: string]: unknown | undefined
12281
12779
  }
12282
12780
 
12283
- groupName?: string
12781
+ groupName: string
12284
12782
 
12285
12783
  order?: ("asc" | "desc")
12286
12784
 
@@ -12291,41 +12789,63 @@ type PerfectionistSortModules = []|[{
12291
12789
  selector?: ("enum" | "function" | "interface" | "type" | "class")
12292
12790
 
12293
12791
  decoratorNamePattern?: (({
12294
- pattern?: string
12792
+
12793
+ pattern: string
12794
+
12295
12795
  flags?: string
12296
12796
  } | string)[] | ({
12297
- pattern?: string
12797
+
12798
+ pattern: string
12799
+
12298
12800
  flags?: string
12299
12801
  } | string))
12300
12802
 
12301
12803
  elementNamePattern?: (({
12302
- pattern?: string
12804
+
12805
+ pattern: string
12806
+
12303
12807
  flags?: string
12304
12808
  } | string)[] | ({
12305
- pattern?: string
12809
+
12810
+ pattern: string
12811
+
12306
12812
  flags?: string
12307
12813
  } | string))
12308
12814
  })[]
12309
12815
 
12310
12816
  partitionByComment?: (boolean | (({
12311
- pattern?: string
12817
+
12818
+ pattern: string
12819
+
12312
12820
  flags?: string
12313
12821
  } | string)[] | ({
12314
- pattern?: string
12822
+
12823
+ pattern: string
12824
+
12315
12825
  flags?: string
12316
12826
  } | string)) | {
12827
+
12317
12828
  block?: (boolean | (({
12318
- pattern?: string
12829
+
12830
+ pattern: string
12831
+
12319
12832
  flags?: string
12320
12833
  } | string)[] | ({
12321
- pattern?: string
12834
+
12835
+ pattern: string
12836
+
12322
12837
  flags?: string
12323
12838
  } | string)))
12839
+
12324
12840
  line?: (boolean | (({
12325
- pattern?: string
12841
+
12842
+ pattern: string
12843
+
12326
12844
  flags?: string
12327
12845
  } | string)[] | ({
12328
- pattern?: string
12846
+
12847
+ pattern: string
12848
+
12329
12849
  flags?: string
12330
12850
  } | string)))
12331
12851
  })
@@ -12336,7 +12856,7 @@ type PerfectionistSortModules = []|[{
12336
12856
 
12337
12857
  groups?: (string | string[] | {
12338
12858
 
12339
- newlinesBetween?: ("ignore" | "always" | "never")
12859
+ newlinesBetween: ("ignore" | "always" | "never")
12340
12860
  })[]
12341
12861
  }]
12342
12862
  // ----- perfectionist/sort-named-exports -----
@@ -12347,7 +12867,6 @@ type PerfectionistSortNamedExports = {
12347
12867
  order?: ("asc" | "desc")
12348
12868
 
12349
12869
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12350
- [k: string]: unknown | undefined
12351
12870
  }
12352
12871
 
12353
12872
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -12375,10 +12894,9 @@ type PerfectionistSortNamedExports = {
12375
12894
  order?: ("asc" | "desc")
12376
12895
 
12377
12896
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12378
- [k: string]: unknown | undefined
12379
12897
  }
12380
12898
 
12381
- groupName?: string
12899
+ groupName: string
12382
12900
 
12383
12901
  order?: ("asc" | "desc")
12384
12902
 
@@ -12390,10 +12908,14 @@ type PerfectionistSortNamedExports = {
12390
12908
  selector?: "export"
12391
12909
 
12392
12910
  elementNamePattern?: (({
12393
- pattern?: string
12911
+
12912
+ pattern: string
12913
+
12394
12914
  flags?: string
12395
12915
  } | string)[] | ({
12396
- pattern?: string
12916
+
12917
+ pattern: string
12918
+
12397
12919
  flags?: string
12398
12920
  } | string))
12399
12921
  }[]
@@ -12406,10 +12928,9 @@ type PerfectionistSortNamedExports = {
12406
12928
  order?: ("asc" | "desc")
12407
12929
 
12408
12930
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12409
- [k: string]: unknown | undefined
12410
12931
  }
12411
12932
 
12412
- groupName?: string
12933
+ groupName: string
12413
12934
 
12414
12935
  order?: ("asc" | "desc")
12415
12936
 
@@ -12420,33 +12941,51 @@ type PerfectionistSortNamedExports = {
12420
12941
  selector?: "export"
12421
12942
 
12422
12943
  elementNamePattern?: (({
12423
- pattern?: string
12944
+
12945
+ pattern: string
12946
+
12424
12947
  flags?: string
12425
12948
  } | string)[] | ({
12426
- pattern?: string
12949
+
12950
+ pattern: string
12951
+
12427
12952
  flags?: string
12428
12953
  } | string))
12429
12954
  })[]
12430
12955
 
12431
12956
  partitionByComment?: (boolean | (({
12432
- pattern?: string
12957
+
12958
+ pattern: string
12959
+
12433
12960
  flags?: string
12434
12961
  } | string)[] | ({
12435
- pattern?: string
12962
+
12963
+ pattern: string
12964
+
12436
12965
  flags?: string
12437
12966
  } | string)) | {
12967
+
12438
12968
  block?: (boolean | (({
12439
- pattern?: string
12969
+
12970
+ pattern: string
12971
+
12440
12972
  flags?: string
12441
12973
  } | string)[] | ({
12442
- pattern?: string
12974
+
12975
+ pattern: string
12976
+
12443
12977
  flags?: string
12444
12978
  } | string)))
12979
+
12445
12980
  line?: (boolean | (({
12446
- pattern?: string
12981
+
12982
+ pattern: string
12983
+
12447
12984
  flags?: string
12448
12985
  } | string)[] | ({
12449
- pattern?: string
12986
+
12987
+ pattern: string
12988
+
12450
12989
  flags?: string
12451
12990
  } | string)))
12452
12991
  })
@@ -12457,7 +12996,7 @@ type PerfectionistSortNamedExports = {
12457
12996
 
12458
12997
  groups?: (string | string[] | {
12459
12998
 
12460
- newlinesBetween?: ("ignore" | "always" | "never")
12999
+ newlinesBetween: ("ignore" | "always" | "never")
12461
13000
  })[]
12462
13001
  }[]
12463
13002
  // ----- perfectionist/sort-named-imports -----
@@ -12468,7 +13007,6 @@ type PerfectionistSortNamedImports = {
12468
13007
  order?: ("asc" | "desc")
12469
13008
 
12470
13009
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12471
- [k: string]: unknown | undefined
12472
13010
  }
12473
13011
 
12474
13012
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -12496,10 +13034,9 @@ type PerfectionistSortNamedImports = {
12496
13034
  order?: ("asc" | "desc")
12497
13035
 
12498
13036
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12499
- [k: string]: unknown | undefined
12500
13037
  }
12501
13038
 
12502
- groupName?: string
13039
+ groupName: string
12503
13040
 
12504
13041
  order?: ("asc" | "desc")
12505
13042
 
@@ -12511,10 +13048,14 @@ type PerfectionistSortNamedImports = {
12511
13048
  selector?: "import"
12512
13049
 
12513
13050
  elementNamePattern?: (({
12514
- pattern?: string
13051
+
13052
+ pattern: string
13053
+
12515
13054
  flags?: string
12516
13055
  } | string)[] | ({
12517
- pattern?: string
13056
+
13057
+ pattern: string
13058
+
12518
13059
  flags?: string
12519
13060
  } | string))
12520
13061
  }[]
@@ -12527,10 +13068,9 @@ type PerfectionistSortNamedImports = {
12527
13068
  order?: ("asc" | "desc")
12528
13069
 
12529
13070
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12530
- [k: string]: unknown | undefined
12531
13071
  }
12532
13072
 
12533
- groupName?: string
13073
+ groupName: string
12534
13074
 
12535
13075
  order?: ("asc" | "desc")
12536
13076
 
@@ -12541,33 +13081,51 @@ type PerfectionistSortNamedImports = {
12541
13081
  selector?: "import"
12542
13082
 
12543
13083
  elementNamePattern?: (({
12544
- pattern?: string
13084
+
13085
+ pattern: string
13086
+
12545
13087
  flags?: string
12546
13088
  } | string)[] | ({
12547
- pattern?: string
13089
+
13090
+ pattern: string
13091
+
12548
13092
  flags?: string
12549
13093
  } | string))
12550
13094
  })[]
12551
13095
 
12552
13096
  partitionByComment?: (boolean | (({
12553
- pattern?: string
13097
+
13098
+ pattern: string
13099
+
12554
13100
  flags?: string
12555
13101
  } | string)[] | ({
12556
- pattern?: string
13102
+
13103
+ pattern: string
13104
+
12557
13105
  flags?: string
12558
13106
  } | string)) | {
13107
+
12559
13108
  block?: (boolean | (({
12560
- pattern?: string
13109
+
13110
+ pattern: string
13111
+
12561
13112
  flags?: string
12562
13113
  } | string)[] | ({
12563
- pattern?: string
13114
+
13115
+ pattern: string
13116
+
12564
13117
  flags?: string
12565
13118
  } | string)))
13119
+
12566
13120
  line?: (boolean | (({
12567
- pattern?: string
13121
+
13122
+ pattern: string
13123
+
12568
13124
  flags?: string
12569
13125
  } | string)[] | ({
12570
- pattern?: string
13126
+
13127
+ pattern: string
13128
+
12571
13129
  flags?: string
12572
13130
  } | string)))
12573
13131
  })
@@ -12578,7 +13136,7 @@ type PerfectionistSortNamedImports = {
12578
13136
 
12579
13137
  groups?: (string | string[] | {
12580
13138
 
12581
- newlinesBetween?: ("ignore" | "always" | "never")
13139
+ newlinesBetween: ("ignore" | "always" | "never")
12582
13140
  })[]
12583
13141
  }[]
12584
13142
  // ----- perfectionist/sort-object-types -----
@@ -12589,7 +13147,7 @@ type PerfectionistSortObjectTypes = {
12589
13147
  order?: ("asc" | "desc")
12590
13148
 
12591
13149
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12592
- [k: string]: unknown | undefined
13150
+ sortBy?: ("name" | "value")
12593
13151
  }
12594
13152
 
12595
13153
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -12615,10 +13173,9 @@ type PerfectionistSortObjectTypes = {
12615
13173
 
12616
13174
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12617
13175
  sortBy?: ("name" | "value")
12618
- [k: string]: unknown | undefined
12619
13176
  }
12620
13177
 
12621
- groupName?: string
13178
+ groupName: string
12622
13179
 
12623
13180
  order?: ("asc" | "desc")
12624
13181
 
@@ -12630,18 +13187,26 @@ type PerfectionistSortObjectTypes = {
12630
13187
  selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
12631
13188
 
12632
13189
  elementValuePattern?: (({
12633
- pattern?: string
13190
+
13191
+ pattern: string
13192
+
12634
13193
  flags?: string
12635
13194
  } | string)[] | ({
12636
- pattern?: string
13195
+
13196
+ pattern: string
13197
+
12637
13198
  flags?: string
12638
13199
  } | string))
12639
13200
 
12640
13201
  elementNamePattern?: (({
12641
- pattern?: string
13202
+
13203
+ pattern: string
13204
+
12642
13205
  flags?: string
12643
13206
  } | string)[] | ({
12644
- pattern?: string
13207
+
13208
+ pattern: string
13209
+
12645
13210
  flags?: string
12646
13211
  } | string))
12647
13212
  sortBy?: ("name" | "value")
@@ -12656,10 +13221,9 @@ type PerfectionistSortObjectTypes = {
12656
13221
 
12657
13222
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12658
13223
  sortBy?: ("name" | "value")
12659
- [k: string]: unknown | undefined
12660
13224
  }
12661
13225
 
12662
- groupName?: string
13226
+ groupName: string
12663
13227
 
12664
13228
  order?: ("asc" | "desc")
12665
13229
 
@@ -12670,62 +13234,93 @@ type PerfectionistSortObjectTypes = {
12670
13234
  selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
12671
13235
 
12672
13236
  elementValuePattern?: (({
12673
- pattern?: string
13237
+
13238
+ pattern: string
13239
+
12674
13240
  flags?: string
12675
13241
  } | string)[] | ({
12676
- pattern?: string
13242
+
13243
+ pattern: string
13244
+
12677
13245
  flags?: string
12678
13246
  } | string))
12679
13247
 
12680
13248
  elementNamePattern?: (({
12681
- pattern?: string
13249
+
13250
+ pattern: string
13251
+
12682
13252
  flags?: string
12683
13253
  } | string)[] | ({
12684
- pattern?: string
13254
+
13255
+ pattern: string
13256
+
12685
13257
  flags?: string
12686
13258
  } | string))
12687
13259
  sortBy?: ("name" | "value")
12688
13260
  })[])
12689
13261
 
12690
13262
  groupKind?: ("mixed" | "required-first" | "optional-first")
13263
+
12691
13264
  useConfigurationIf?: {
12692
13265
 
12693
13266
  allNamesMatchPattern?: (({
12694
- pattern?: string
13267
+
13268
+ pattern: string
13269
+
12695
13270
  flags?: string
12696
13271
  } | string)[] | ({
12697
- pattern?: string
13272
+
13273
+ pattern: string
13274
+
12698
13275
  flags?: string
12699
13276
  } | string))
12700
13277
 
12701
13278
  declarationMatchesPattern?: (({
12702
- pattern?: string
13279
+
13280
+ pattern: string
13281
+
12703
13282
  flags?: string
12704
13283
  } | string)[] | ({
12705
- pattern?: string
13284
+
13285
+ pattern: string
13286
+
12706
13287
  flags?: string
12707
13288
  } | string))
12708
13289
  }
12709
13290
 
12710
13291
  partitionByComment?: (boolean | (({
12711
- pattern?: string
13292
+
13293
+ pattern: string
13294
+
12712
13295
  flags?: string
12713
13296
  } | string)[] | ({
12714
- pattern?: string
13297
+
13298
+ pattern: string
13299
+
12715
13300
  flags?: string
12716
13301
  } | string)) | {
13302
+
12717
13303
  block?: (boolean | (({
12718
- pattern?: string
13304
+
13305
+ pattern: string
13306
+
12719
13307
  flags?: string
12720
13308
  } | string)[] | ({
12721
- pattern?: string
13309
+
13310
+ pattern: string
13311
+
12722
13312
  flags?: string
12723
13313
  } | string)))
13314
+
12724
13315
  line?: (boolean | (({
12725
- pattern?: string
13316
+
13317
+ pattern: string
13318
+
12726
13319
  flags?: string
12727
13320
  } | string)[] | ({
12728
- pattern?: string
13321
+
13322
+ pattern: string
13323
+
12729
13324
  flags?: string
12730
13325
  } | string)))
12731
13326
  })
@@ -12735,17 +13330,21 @@ type PerfectionistSortObjectTypes = {
12735
13330
  newlinesBetween?: ("ignore" | "always" | "never")
12736
13331
 
12737
13332
  ignorePattern?: (({
12738
- pattern?: string
13333
+
13334
+ pattern: string
13335
+
12739
13336
  flags?: string
12740
13337
  } | string)[] | ({
12741
- pattern?: string
13338
+
13339
+ pattern: string
13340
+
12742
13341
  flags?: string
12743
13342
  } | string))
12744
13343
  sortBy?: ("name" | "value")
12745
13344
 
12746
13345
  groups?: (string | string[] | {
12747
13346
 
12748
- newlinesBetween?: ("ignore" | "always" | "never")
13347
+ newlinesBetween: ("ignore" | "always" | "never")
12749
13348
  })[]
12750
13349
  }[]
12751
13350
  // ----- perfectionist/sort-objects -----
@@ -12756,7 +13355,6 @@ type PerfectionistSortObjects = {
12756
13355
  order?: ("asc" | "desc")
12757
13356
 
12758
13357
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12759
- [k: string]: unknown | undefined
12760
13358
  }
12761
13359
 
12762
13360
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -12786,10 +13384,9 @@ type PerfectionistSortObjects = {
12786
13384
  order?: ("asc" | "desc")
12787
13385
 
12788
13386
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12789
- [k: string]: unknown | undefined
12790
13387
  }
12791
13388
 
12792
- groupName?: string
13389
+ groupName: string
12793
13390
 
12794
13391
  order?: ("asc" | "desc")
12795
13392
 
@@ -12801,18 +13398,26 @@ type PerfectionistSortObjects = {
12801
13398
  selector?: ("member" | "method" | "multiline" | "property")
12802
13399
 
12803
13400
  elementValuePattern?: (({
12804
- pattern?: string
13401
+
13402
+ pattern: string
13403
+
12805
13404
  flags?: string
12806
13405
  } | string)[] | ({
12807
- pattern?: string
13406
+
13407
+ pattern: string
13408
+
12808
13409
  flags?: string
12809
13410
  } | string))
12810
13411
 
12811
13412
  elementNamePattern?: (({
12812
- pattern?: string
13413
+
13414
+ pattern: string
13415
+
12813
13416
  flags?: string
12814
13417
  } | string)[] | ({
12815
- pattern?: string
13418
+
13419
+ pattern: string
13420
+
12816
13421
  flags?: string
12817
13422
  } | string))
12818
13423
  }[]
@@ -12825,10 +13430,9 @@ type PerfectionistSortObjects = {
12825
13430
  order?: ("asc" | "desc")
12826
13431
 
12827
13432
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12828
- [k: string]: unknown | undefined
12829
13433
  }
12830
13434
 
12831
- groupName?: string
13435
+ groupName: string
12832
13436
 
12833
13437
  order?: ("asc" | "desc")
12834
13438
 
@@ -12839,36 +13443,53 @@ type PerfectionistSortObjects = {
12839
13443
  selector?: ("member" | "method" | "multiline" | "property")
12840
13444
 
12841
13445
  elementValuePattern?: (({
12842
- pattern?: string
13446
+
13447
+ pattern: string
13448
+
12843
13449
  flags?: string
12844
13450
  } | string)[] | ({
12845
- pattern?: string
13451
+
13452
+ pattern: string
13453
+
12846
13454
  flags?: string
12847
13455
  } | string))
12848
13456
 
12849
13457
  elementNamePattern?: (({
12850
- pattern?: string
13458
+
13459
+ pattern: string
13460
+
12851
13461
  flags?: string
12852
13462
  } | string)[] | ({
12853
- pattern?: string
13463
+
13464
+ pattern: string
13465
+
12854
13466
  flags?: string
12855
13467
  } | string))
12856
13468
  })[])
13469
+
12857
13470
  useConfigurationIf?: {
12858
13471
 
12859
13472
  allNamesMatchPattern?: (({
12860
- pattern?: string
13473
+
13474
+ pattern: string
13475
+
12861
13476
  flags?: string
12862
13477
  } | string)[] | ({
12863
- pattern?: string
13478
+
13479
+ pattern: string
13480
+
12864
13481
  flags?: string
12865
13482
  } | string))
12866
13483
 
12867
13484
  callingFunctionNamePattern?: (({
12868
- pattern?: string
13485
+
13486
+ pattern: string
13487
+
12869
13488
  flags?: string
12870
13489
  } | string)[] | ({
12871
- pattern?: string
13490
+
13491
+ pattern: string
13492
+
12872
13493
  flags?: string
12873
13494
  } | string))
12874
13495
  }
@@ -12880,24 +13501,38 @@ type PerfectionistSortObjects = {
12880
13501
  styledComponents?: boolean
12881
13502
 
12882
13503
  partitionByComment?: (boolean | (({
12883
- pattern?: string
13504
+
13505
+ pattern: string
13506
+
12884
13507
  flags?: string
12885
13508
  } | string)[] | ({
12886
- pattern?: string
13509
+
13510
+ pattern: string
13511
+
12887
13512
  flags?: string
12888
13513
  } | string)) | {
13514
+
12889
13515
  block?: (boolean | (({
12890
- pattern?: string
13516
+
13517
+ pattern: string
13518
+
12891
13519
  flags?: string
12892
13520
  } | string)[] | ({
12893
- pattern?: string
13521
+
13522
+ pattern: string
13523
+
12894
13524
  flags?: string
12895
13525
  } | string)))
13526
+
12896
13527
  line?: (boolean | (({
12897
- pattern?: string
13528
+
13529
+ pattern: string
13530
+
12898
13531
  flags?: string
12899
13532
  } | string)[] | ({
12900
- pattern?: string
13533
+
13534
+ pattern: string
13535
+
12901
13536
  flags?: string
12902
13537
  } | string)))
12903
13538
  })
@@ -12907,16 +13542,20 @@ type PerfectionistSortObjects = {
12907
13542
  newlinesBetween?: ("ignore" | "always" | "never")
12908
13543
 
12909
13544
  ignorePattern?: (({
12910
- pattern?: string
13545
+
13546
+ pattern: string
13547
+
12911
13548
  flags?: string
12912
13549
  } | string)[] | ({
12913
- pattern?: string
13550
+
13551
+ pattern: string
13552
+
12914
13553
  flags?: string
12915
13554
  } | string))
12916
13555
 
12917
13556
  groups?: (string | string[] | {
12918
13557
 
12919
- newlinesBetween?: ("ignore" | "always" | "never")
13558
+ newlinesBetween: ("ignore" | "always" | "never")
12920
13559
  })[]
12921
13560
  }[]
12922
13561
  // ----- perfectionist/sort-sets -----
@@ -12927,7 +13566,6 @@ type PerfectionistSortSets = {
12927
13566
  order?: ("asc" | "desc")
12928
13567
 
12929
13568
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12930
- [k: string]: unknown | undefined
12931
13569
  }
12932
13570
 
12933
13571
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -12953,10 +13591,9 @@ type PerfectionistSortSets = {
12953
13591
  order?: ("asc" | "desc")
12954
13592
 
12955
13593
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12956
- [k: string]: unknown | undefined
12957
13594
  }
12958
13595
 
12959
- groupName?: string
13596
+ groupName: string
12960
13597
 
12961
13598
  order?: ("asc" | "desc")
12962
13599
 
@@ -12966,10 +13603,14 @@ type PerfectionistSortSets = {
12966
13603
  selector?: ("literal" | "spread")
12967
13604
 
12968
13605
  elementNamePattern?: (({
12969
- pattern?: string
13606
+
13607
+ pattern: string
13608
+
12970
13609
  flags?: string
12971
13610
  } | string)[] | ({
12972
- pattern?: string
13611
+
13612
+ pattern: string
13613
+
12973
13614
  flags?: string
12974
13615
  } | string))
12975
13616
  }[]
@@ -12982,10 +13623,9 @@ type PerfectionistSortSets = {
12982
13623
  order?: ("asc" | "desc")
12983
13624
 
12984
13625
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12985
- [k: string]: unknown | undefined
12986
13626
  }
12987
13627
 
12988
- groupName?: string
13628
+ groupName: string
12989
13629
 
12990
13630
  order?: ("asc" | "desc")
12991
13631
 
@@ -12994,43 +13634,66 @@ type PerfectionistSortSets = {
12994
13634
  selector?: ("literal" | "spread")
12995
13635
 
12996
13636
  elementNamePattern?: (({
12997
- pattern?: string
13637
+
13638
+ pattern: string
13639
+
12998
13640
  flags?: string
12999
13641
  } | string)[] | ({
13000
- pattern?: string
13642
+
13643
+ pattern: string
13644
+
13001
13645
  flags?: string
13002
13646
  } | string))
13003
13647
  })[]
13648
+
13004
13649
  useConfigurationIf?: {
13005
13650
 
13006
13651
  allNamesMatchPattern?: (({
13007
- pattern?: string
13652
+
13653
+ pattern: string
13654
+
13008
13655
  flags?: string
13009
13656
  } | string)[] | ({
13010
- pattern?: string
13657
+
13658
+ pattern: string
13659
+
13011
13660
  flags?: string
13012
13661
  } | string))
13013
13662
  }
13014
13663
 
13015
13664
  partitionByComment?: (boolean | (({
13016
- pattern?: string
13665
+
13666
+ pattern: string
13667
+
13017
13668
  flags?: string
13018
13669
  } | string)[] | ({
13019
- pattern?: string
13670
+
13671
+ pattern: string
13672
+
13020
13673
  flags?: string
13021
13674
  } | string)) | {
13675
+
13022
13676
  block?: (boolean | (({
13023
- pattern?: string
13677
+
13678
+ pattern: string
13679
+
13024
13680
  flags?: string
13025
13681
  } | string)[] | ({
13026
- pattern?: string
13682
+
13683
+ pattern: string
13684
+
13027
13685
  flags?: string
13028
13686
  } | string)))
13687
+
13029
13688
  line?: (boolean | (({
13030
- pattern?: string
13689
+
13690
+ pattern: string
13691
+
13031
13692
  flags?: string
13032
13693
  } | string)[] | ({
13033
- pattern?: string
13694
+
13695
+ pattern: string
13696
+
13034
13697
  flags?: string
13035
13698
  } | string)))
13036
13699
  })
@@ -13041,7 +13704,7 @@ type PerfectionistSortSets = {
13041
13704
 
13042
13705
  groups?: (string | string[] | {
13043
13706
 
13044
- newlinesBetween?: ("ignore" | "always" | "never")
13707
+ newlinesBetween: ("ignore" | "always" | "never")
13045
13708
  })[]
13046
13709
  }[]
13047
13710
  // ----- perfectionist/sort-switch-case -----
@@ -13052,7 +13715,6 @@ type PerfectionistSortSwitchCase = []|[{
13052
13715
  order?: ("asc" | "desc")
13053
13716
 
13054
13717
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13055
- [k: string]: unknown | undefined
13056
13718
  }
13057
13719
 
13058
13720
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -13068,14 +13730,13 @@ type PerfectionistSortSwitchCase = []|[{
13068
13730
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13069
13731
  }]
13070
13732
  // ----- perfectionist/sort-union-types -----
13071
- type PerfectionistSortUnionTypes = []|[{
13733
+ type PerfectionistSortUnionTypes = {
13072
13734
 
13073
13735
  fallbackSort?: {
13074
13736
 
13075
13737
  order?: ("asc" | "desc")
13076
13738
 
13077
13739
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13078
- [k: string]: unknown | undefined
13079
13740
  }
13080
13741
 
13081
13742
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -13090,25 +13751,103 @@ type PerfectionistSortUnionTypes = []|[{
13090
13751
 
13091
13752
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13092
13753
 
13754
+ customGroups?: ({
13755
+
13756
+ newlinesInside?: ("always" | "never")
13757
+
13758
+ fallbackSort?: {
13759
+
13760
+ order?: ("asc" | "desc")
13761
+
13762
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13763
+ }
13764
+
13765
+ groupName: string
13766
+
13767
+ order?: ("asc" | "desc")
13768
+
13769
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13770
+ anyOf?: {
13771
+
13772
+ selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
13773
+
13774
+ elementNamePattern?: (({
13775
+
13776
+ pattern: string
13777
+
13778
+ flags?: string
13779
+ } | string)[] | ({
13780
+
13781
+ pattern: string
13782
+
13783
+ flags?: string
13784
+ } | string))
13785
+ }[]
13786
+ } | {
13787
+
13788
+ newlinesInside?: ("always" | "never")
13789
+
13790
+ fallbackSort?: {
13791
+
13792
+ order?: ("asc" | "desc")
13793
+
13794
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13795
+ }
13796
+
13797
+ groupName: string
13798
+
13799
+ order?: ("asc" | "desc")
13800
+
13801
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13802
+
13803
+ selector?: ("intersection" | "conditional" | "function" | "operator" | "keyword" | "literal" | "nullish" | "import" | "object" | "named" | "tuple" | "union")
13804
+
13805
+ elementNamePattern?: (({
13806
+
13807
+ pattern: string
13808
+
13809
+ flags?: string
13810
+ } | string)[] | ({
13811
+
13812
+ pattern: string
13813
+
13814
+ flags?: string
13815
+ } | string))
13816
+ })[]
13817
+
13093
13818
  partitionByComment?: (boolean | (({
13094
- pattern?: string
13819
+
13820
+ pattern: string
13821
+
13095
13822
  flags?: string
13096
13823
  } | string)[] | ({
13097
- pattern?: string
13824
+
13825
+ pattern: string
13826
+
13098
13827
  flags?: string
13099
13828
  } | string)) | {
13829
+
13100
13830
  block?: (boolean | (({
13101
- pattern?: string
13831
+
13832
+ pattern: string
13833
+
13102
13834
  flags?: string
13103
13835
  } | string)[] | ({
13104
- pattern?: string
13836
+
13837
+ pattern: string
13838
+
13105
13839
  flags?: string
13106
13840
  } | string)))
13841
+
13107
13842
  line?: (boolean | (({
13108
- pattern?: string
13843
+
13844
+ pattern: string
13845
+
13109
13846
  flags?: string
13110
13847
  } | string)[] | ({
13111
- pattern?: string
13848
+
13849
+ pattern: string
13850
+
13112
13851
  flags?: string
13113
13852
  } | string)))
13114
13853
  })
@@ -13119,9 +13858,9 @@ type PerfectionistSortUnionTypes = []|[{
13119
13858
 
13120
13859
  groups?: (string | string[] | {
13121
13860
 
13122
- newlinesBetween?: ("ignore" | "always" | "never")
13861
+ newlinesBetween: ("ignore" | "always" | "never")
13123
13862
  })[]
13124
- }]
13863
+ }[]
13125
13864
  // ----- perfectionist/sort-variable-declarations -----
13126
13865
  type PerfectionistSortVariableDeclarations = []|[{
13127
13866
 
@@ -13130,7 +13869,6 @@ type PerfectionistSortVariableDeclarations = []|[{
13130
13869
  order?: ("asc" | "desc")
13131
13870
 
13132
13871
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13133
- [k: string]: unknown | undefined
13134
13872
  }
13135
13873
 
13136
13874
  specialCharacters?: ("remove" | "trim" | "keep")
@@ -13145,30 +13883,115 @@ type PerfectionistSortVariableDeclarations = []|[{
13145
13883
 
13146
13884
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13147
13885
 
13886
+ customGroups?: ({
13887
+
13888
+ newlinesInside?: ("always" | "never")
13889
+
13890
+ fallbackSort?: {
13891
+
13892
+ order?: ("asc" | "desc")
13893
+
13894
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13895
+ }
13896
+
13897
+ groupName: string
13898
+
13899
+ order?: ("asc" | "desc")
13900
+
13901
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13902
+ anyOf?: {
13903
+
13904
+ selector?: ("initialized" | "uninitialized")
13905
+
13906
+ elementNamePattern?: (({
13907
+
13908
+ pattern: string
13909
+
13910
+ flags?: string
13911
+ } | string)[] | ({
13912
+
13913
+ pattern: string
13914
+
13915
+ flags?: string
13916
+ } | string))
13917
+ }[]
13918
+ } | {
13919
+
13920
+ newlinesInside?: ("always" | "never")
13921
+
13922
+ fallbackSort?: {
13923
+
13924
+ order?: ("asc" | "desc")
13925
+
13926
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13927
+ }
13928
+
13929
+ groupName: string
13930
+
13931
+ order?: ("asc" | "desc")
13932
+
13933
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
13934
+
13935
+ selector?: ("initialized" | "uninitialized")
13936
+
13937
+ elementNamePattern?: (({
13938
+
13939
+ pattern: string
13940
+
13941
+ flags?: string
13942
+ } | string)[] | ({
13943
+
13944
+ pattern: string
13945
+
13946
+ flags?: string
13947
+ } | string))
13948
+ })[]
13949
+
13148
13950
  partitionByComment?: (boolean | (({
13149
- pattern?: string
13951
+
13952
+ pattern: string
13953
+
13150
13954
  flags?: string
13151
13955
  } | string)[] | ({
13152
- pattern?: string
13956
+
13957
+ pattern: string
13958
+
13153
13959
  flags?: string
13154
13960
  } | string)) | {
13961
+
13155
13962
  block?: (boolean | (({
13156
- pattern?: string
13963
+
13964
+ pattern: string
13965
+
13157
13966
  flags?: string
13158
13967
  } | string)[] | ({
13159
- pattern?: string
13968
+
13969
+ pattern: string
13970
+
13160
13971
  flags?: string
13161
13972
  } | string)))
13973
+
13162
13974
  line?: (boolean | (({
13163
- pattern?: string
13975
+
13976
+ pattern: string
13977
+
13164
13978
  flags?: string
13165
13979
  } | string)[] | ({
13166
- pattern?: string
13980
+
13981
+ pattern: string
13982
+
13167
13983
  flags?: string
13168
13984
  } | string)))
13169
13985
  })
13170
13986
 
13171
13987
  partitionByNewLine?: boolean
13988
+
13989
+ newlinesBetween?: ("ignore" | "always" | "never")
13990
+
13991
+ groups?: (string | string[] | {
13992
+
13993
+ newlinesBetween: ("ignore" | "always" | "never")
13994
+ })[]
13172
13995
  }]
13173
13996
  // ----- pnpm/json-enforce-catalog -----
13174
13997
  type PnpmJsonEnforceCatalog = []|[{