@storm-software/eslint 0.170.108 → 0.170.109

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -1464,238 +1464,238 @@ Backward pagination arguments
1464
1464
  'import-zod/prefer-zod-namespace'?: Linter.RuleEntry<[]>
1465
1465
  /**
1466
1466
  * Enforce or ban the use of inline type-only markers for named imports.
1467
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/consistent-type-specifier-style.md
1467
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/consistent-type-specifier-style.md
1468
1468
  */
1469
1469
  'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
1470
1470
  /**
1471
1471
  * Ensure a default export is present, given a default import.
1472
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/default.md
1472
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/default.md
1473
1473
  */
1474
1474
  'import/default'?: Linter.RuleEntry<[]>
1475
1475
  /**
1476
1476
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
1477
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/dynamic-import-chunkname.md
1477
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/dynamic-import-chunkname.md
1478
1478
  */
1479
1479
  'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
1480
1480
  /**
1481
1481
  * Forbid any invalid exports, i.e. re-export of the same name.
1482
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/export.md
1482
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/export.md
1483
1483
  */
1484
1484
  'import/export'?: Linter.RuleEntry<[]>
1485
1485
  /**
1486
1486
  * Ensure all exports appear after other statements.
1487
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/exports-last.md
1487
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/exports-last.md
1488
1488
  */
1489
1489
  'import/exports-last'?: Linter.RuleEntry<[]>
1490
1490
  /**
1491
1491
  * Ensure consistent use of file extension within the import path.
1492
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/extensions.md
1492
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/extensions.md
1493
1493
  */
1494
1494
  'import/extensions'?: Linter.RuleEntry<ImportExtensions>
1495
1495
  /**
1496
1496
  * Ensure all imports appear before other statements.
1497
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/first.md
1497
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/first.md
1498
1498
  */
1499
1499
  'import/first'?: Linter.RuleEntry<ImportFirst>
1500
1500
  /**
1501
1501
  * Prefer named exports to be grouped together in a single export declaration.
1502
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/group-exports.md
1502
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/group-exports.md
1503
1503
  */
1504
1504
  'import/group-exports'?: Linter.RuleEntry<[]>
1505
1505
  /**
1506
1506
  * Replaced by `import-x/first`.
1507
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/imports-first.md
1507
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/imports-first.md
1508
1508
  * @deprecated
1509
1509
  */
1510
1510
  'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
1511
1511
  /**
1512
1512
  * Enforce the maximum number of dependencies a module can have.
1513
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/max-dependencies.md
1513
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/max-dependencies.md
1514
1514
  */
1515
1515
  'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
1516
1516
  /**
1517
1517
  * Ensure named imports correspond to a named export in the remote file.
1518
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/named.md
1518
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/named.md
1519
1519
  */
1520
1520
  'import/named'?: Linter.RuleEntry<ImportNamed>
1521
1521
  /**
1522
1522
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
1523
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/namespace.md
1523
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/namespace.md
1524
1524
  */
1525
1525
  'import/namespace'?: Linter.RuleEntry<ImportNamespace>
1526
1526
  /**
1527
1527
  * Enforce a newline after import statements.
1528
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/newline-after-import.md
1528
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/newline-after-import.md
1529
1529
  */
1530
1530
  'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
1531
1531
  /**
1532
1532
  * Forbid import of modules using absolute paths.
1533
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-absolute-path.md
1533
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-absolute-path.md
1534
1534
  */
1535
1535
  'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
1536
1536
  /**
1537
1537
  * Forbid AMD `require` and `define` calls.
1538
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-amd.md
1538
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-amd.md
1539
1539
  */
1540
1540
  'import/no-amd'?: Linter.RuleEntry<[]>
1541
1541
  /**
1542
1542
  * Forbid anonymous values as default exports.
1543
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-anonymous-default-export.md
1543
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-anonymous-default-export.md
1544
1544
  */
1545
1545
  'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
1546
1546
  /**
1547
1547
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
1548
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-commonjs.md
1548
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-commonjs.md
1549
1549
  */
1550
1550
  'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
1551
1551
  /**
1552
1552
  * Forbid a module from importing a module with a dependency path back to itself.
1553
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-cycle.md
1553
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-cycle.md
1554
1554
  */
1555
1555
  'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
1556
1556
  /**
1557
1557
  * Forbid default exports.
1558
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-default-export.md
1558
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-default-export.md
1559
1559
  */
1560
1560
  'import/no-default-export'?: Linter.RuleEntry<[]>
1561
1561
  /**
1562
1562
  * Forbid imported names marked with `@deprecated` documentation tag.
1563
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-deprecated.md
1563
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-deprecated.md
1564
1564
  */
1565
1565
  'import/no-deprecated'?: Linter.RuleEntry<[]>
1566
1566
  /**
1567
1567
  * Forbid repeated import of the same module in multiple places.
1568
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-duplicates.md
1568
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-duplicates.md
1569
1569
  */
1570
1570
  'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
1571
1571
  /**
1572
1572
  * Forbid `require()` calls with expressions.
1573
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-dynamic-require.md
1573
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-dynamic-require.md
1574
1574
  */
1575
1575
  'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
1576
1576
  /**
1577
1577
  * Forbid empty named import blocks.
1578
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-empty-named-blocks.md
1578
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-empty-named-blocks.md
1579
1579
  */
1580
1580
  'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
1581
1581
  /**
1582
1582
  * Forbid the use of extraneous packages.
1583
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-extraneous-dependencies.md
1583
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-extraneous-dependencies.md
1584
1584
  */
1585
1585
  'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
1586
1586
  /**
1587
1587
  * Forbid import statements with CommonJS module.exports.
1588
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-import-module-exports.md
1588
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-import-module-exports.md
1589
1589
  */
1590
1590
  'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
1591
1591
  /**
1592
1592
  * Forbid importing the submodules of other modules.
1593
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-internal-modules.md
1593
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-internal-modules.md
1594
1594
  */
1595
1595
  'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
1596
1596
  /**
1597
1597
  * Forbid the use of mutable exports with `var` or `let`.
1598
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-mutable-exports.md
1598
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-mutable-exports.md
1599
1599
  */
1600
1600
  'import/no-mutable-exports'?: Linter.RuleEntry<[]>
1601
1601
  /**
1602
1602
  * Forbid use of exported name as identifier of default export.
1603
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-named-as-default.md
1603
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-named-as-default.md
1604
1604
  */
1605
1605
  'import/no-named-as-default'?: Linter.RuleEntry<[]>
1606
1606
  /**
1607
1607
  * Forbid use of exported name as property of default export.
1608
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-named-as-default-member.md
1608
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-named-as-default-member.md
1609
1609
  */
1610
1610
  'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
1611
1611
  /**
1612
1612
  * Forbid named default exports.
1613
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-named-default.md
1613
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-named-default.md
1614
1614
  */
1615
1615
  'import/no-named-default'?: Linter.RuleEntry<[]>
1616
1616
  /**
1617
1617
  * Forbid named exports.
1618
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-named-export.md
1618
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-named-export.md
1619
1619
  */
1620
1620
  'import/no-named-export'?: Linter.RuleEntry<[]>
1621
1621
  /**
1622
1622
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
1623
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-namespace.md
1623
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-namespace.md
1624
1624
  */
1625
1625
  'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
1626
1626
  /**
1627
1627
  * Forbid Node.js builtin modules.
1628
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-nodejs-modules.md
1628
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-nodejs-modules.md
1629
1629
  */
1630
1630
  'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
1631
1631
  /**
1632
1632
  * Forbid importing packages through relative paths.
1633
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-relative-packages.md
1633
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-relative-packages.md
1634
1634
  */
1635
1635
  'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
1636
1636
  /**
1637
1637
  * Forbid importing modules from parent directories.
1638
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-relative-parent-imports.md
1638
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-relative-parent-imports.md
1639
1639
  */
1640
1640
  'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
1641
1641
  /**
1642
1642
  * Forbid importing a default export by a different name.
1643
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-rename-default.md
1643
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-rename-default.md
1644
1644
  */
1645
1645
  'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
1646
1646
  /**
1647
1647
  * Enforce which files can be imported in a given folder.
1648
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-restricted-paths.md
1648
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-restricted-paths.md
1649
1649
  */
1650
1650
  'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
1651
1651
  /**
1652
1652
  * Forbid a module from importing itself.
1653
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-self-import.md
1653
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-self-import.md
1654
1654
  */
1655
1655
  'import/no-self-import'?: Linter.RuleEntry<[]>
1656
1656
  /**
1657
1657
  * Forbid unassigned imports.
1658
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-unassigned-import.md
1658
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-unassigned-import.md
1659
1659
  */
1660
1660
  'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
1661
1661
  /**
1662
1662
  * Ensure imports point to a file/module that can be resolved.
1663
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-unresolved.md
1663
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-unresolved.md
1664
1664
  */
1665
1665
  'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
1666
1666
  /**
1667
1667
  * Forbid modules without exports, or exports without matching import in another module.
1668
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-unused-modules.md
1668
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-unused-modules.md
1669
1669
  */
1670
1670
  'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
1671
1671
  /**
1672
1672
  * Forbid unnecessary path segments in import and require statements.
1673
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-useless-path-segments.md
1673
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-useless-path-segments.md
1674
1674
  */
1675
1675
  'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
1676
1676
  /**
1677
1677
  * Forbid webpack loader syntax in imports.
1678
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-webpack-loader-syntax.md
1678
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-webpack-loader-syntax.md
1679
1679
  */
1680
1680
  'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
1681
1681
  /**
1682
1682
  * Enforce a convention in module import order.
1683
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/order.md
1683
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/order.md
1684
1684
  */
1685
1685
  'import/order'?: Linter.RuleEntry<ImportOrder>
1686
1686
  /**
1687
1687
  * Prefer a default export if module exports a single name or multiple names.
1688
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/prefer-default-export.md
1688
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/prefer-default-export.md
1689
1689
  */
1690
1690
  'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
1691
1691
  /**
1692
1692
  * Enforce using namespace imports for specific modules, like `react`/`react-dom`, etc.
1693
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/prefer-namespace-import.md
1693
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/prefer-namespace-import.md
1694
1694
  */
1695
1695
  'import/prefer-namespace-import'?: Linter.RuleEntry<ImportPreferNamespaceImport>
1696
1696
  /**
1697
1697
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
1698
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/unambiguous.md
1698
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/unambiguous.md
1699
1699
  */
1700
1700
  'import/unambiguous'?: Linter.RuleEntry<[]>
1701
1701
  /**
@@ -8970,7 +8970,7 @@ type ImportNoAbsolutePath = []|[{
8970
8970
  amd?: boolean
8971
8971
  esmodule?: boolean
8972
8972
 
8973
- ignore?: [string, ...(string)[]]
8973
+ ignore?: [unknown, ...(unknown)[]]
8974
8974
  }]
8975
8975
  // ----- import/no-anonymous-default-export -----
8976
8976
  type ImportNoAnonymousDefaultExport = []|[{
@@ -9003,7 +9003,7 @@ type ImportNoCycle = []|[{
9003
9003
  amd?: boolean
9004
9004
  esmodule?: boolean
9005
9005
 
9006
- ignore?: [string, ...(string)[]]
9006
+ ignore?: [unknown, ...(unknown)[]]
9007
9007
  maxDepth?: (number | "∞")
9008
9008
 
9009
9009
  ignoreExternal?: boolean
@@ -9055,7 +9055,7 @@ type ImportNoRelativePackages = []|[{
9055
9055
  amd?: boolean
9056
9056
  esmodule?: boolean
9057
9057
 
9058
- ignore?: [string, ...(string)[]]
9058
+ ignore?: [unknown, ...(unknown)[]]
9059
9059
  }]
9060
9060
  // ----- import/no-relative-parent-imports -----
9061
9061
  type ImportNoRelativeParentImports = []|[{
@@ -9063,7 +9063,7 @@ type ImportNoRelativeParentImports = []|[{
9063
9063
  amd?: boolean
9064
9064
  esmodule?: boolean
9065
9065
 
9066
- ignore?: [string, ...(string)[]]
9066
+ ignore?: [unknown, ...(unknown)[]]
9067
9067
  }]
9068
9068
  // ----- import/no-rename-default -----
9069
9069
  type ImportNoRenameDefault = []|[{
@@ -9099,7 +9099,7 @@ type ImportNoUnresolved = []|[{
9099
9099
  amd?: boolean
9100
9100
  esmodule?: boolean
9101
9101
 
9102
- ignore?: [string, ...(string)[]]
9102
+ ignore?: [unknown, ...(unknown)[]]
9103
9103
  caseSensitive?: boolean
9104
9104
  caseSensitiveStrict?: boolean
9105
9105
  }]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.170.108",
3
+ "version": "0.170.109",
4
4
  "private": false,
5
5
  "description": "A package containing the base ESLint configuration used by Storm Software across many projects.",
6
6
  "keywords": [
@@ -141,13 +141,13 @@
141
141
  "@eslint/eslintrc": "^3.3.5",
142
142
  "@eslint/markdown": "^6.6.0",
143
143
  "@nx/eslint-plugin": "22.7.5",
144
- "@storm-software/config": "1.138.12",
145
- "@storm-software/config-tools": "1.190.75",
146
- "@storm-software/package-constants": "0.1.88",
144
+ "@storm-software/config": "1.138.13",
145
+ "@storm-software/config-tools": "1.190.76",
146
+ "@storm-software/package-constants": "0.1.89",
147
147
  "@stylistic/eslint-plugin": "^4.4.1",
148
- "@typescript-eslint/eslint-plugin": "^8.61.1",
149
- "@typescript-eslint/parser": "^8.61.1",
150
- "@typescript-eslint/utils": "^8.61.1",
148
+ "@typescript-eslint/eslint-plugin": "^8.62.0",
149
+ "@typescript-eslint/parser": "^8.62.0",
150
+ "@typescript-eslint/utils": "^8.62.0",
151
151
  "@vitest/eslint-plugin": "^1.6.20",
152
152
  "chalk": "^4.1.2",
153
153
  "defu": "^6.1.7",
@@ -189,17 +189,17 @@
189
189
  },
190
190
  "devDependencies": {
191
191
  "@eslint-community/eslint-utils": "^4.9.1",
192
- "@eslint-react/eslint-plugin": "^5.9.1",
192
+ "@eslint-react/eslint-plugin": "^5.9.2",
193
193
  "@eslint-types/typescript-eslint": "^7.5.0",
194
194
  "@eslint/config-inspector": "^1.5.0",
195
195
  "@graphql-eslint/eslint-plugin": "^4.4.0",
196
196
  "@next/eslint-plugin-next": "^15.5.19",
197
197
  "@nx/eslint": "22.7.5",
198
198
  "@prettier/plugin-xml": "^3.4.2",
199
- "@storm-software/eslint-plugin-banner": "0.0.40",
200
- "@storm-software/eslint-plugin-pnpm": "0.0.38",
201
- "@storm-software/eslint-plugin-tsdoc": "0.0.38",
202
- "@storm-software/tsdoc": "0.13.228",
199
+ "@storm-software/eslint-plugin-banner": "0.0.41",
200
+ "@storm-software/eslint-plugin-pnpm": "0.0.39",
201
+ "@storm-software/eslint-plugin-tsdoc": "0.0.39",
202
+ "@storm-software/tsdoc": "0.13.229",
203
203
  "@stylistic/eslint-plugin-migrate": "^4.4.1",
204
204
  "@types/eslint": "^9.6.1",
205
205
  "@types/eslint__js": "^8.42.3",
@@ -210,7 +210,7 @@
210
210
  "eslint": "^10.5.0",
211
211
  "eslint-plugin-astro": "^1.7.0",
212
212
  "eslint-plugin-format": "^1.5.0",
213
- "eslint-plugin-import-x": "^4.16.2",
213
+ "eslint-plugin-import-x": "^4.17.0",
214
214
  "eslint-plugin-import-zod": "^1.2.1",
215
215
  "eslint-plugin-mdx": "^3.8.1",
216
216
  "eslint-plugin-react-compiler": "19.1.0-rc.2",
@@ -272,5 +272,5 @@
272
272
  "zod": { "optional": true }
273
273
  },
274
274
  "publishConfig": { "access": "public" },
275
- "gitHead": "7529d6f9e45c0485beb316de8bad1cdd8b1d2936"
275
+ "gitHead": "787f5e3d2fce849d93cfaea129ba6b941f407de1"
276
276
  }