@anolilab/eslint-config 16.2.8 → 16.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1174,6 +1174,7 @@ interface RuleOptions {
1174
1174
  /**
1175
1175
  * Require type annotations in certain places
1176
1176
  * @see https://typescript-eslint.io/rules/typedef
1177
+ * @deprecated
1177
1178
  */
1178
1179
  '@typescript-eslint/typedef'?: Linter.RuleEntry<TypescriptEslintTypedef>
1179
1180
  /**
@@ -1571,233 +1572,233 @@ interface RuleOptions {
1571
1572
  'format/prettier'?: Linter.RuleEntry<FormatPrettier>
1572
1573
  /**
1573
1574
  * Enforce or ban the use of inline type-only markers for named imports.
1574
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/consistent-type-specifier-style.md
1575
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/consistent-type-specifier-style.md
1575
1576
  */
1576
1577
  'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
1577
1578
  /**
1578
1579
  * Ensure a default export is present, given a default import.
1579
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/default.md
1580
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/default.md
1580
1581
  */
1581
1582
  'import/default'?: Linter.RuleEntry<[]>
1582
1583
  /**
1583
1584
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
1584
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/dynamic-import-chunkname.md
1585
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/dynamic-import-chunkname.md
1585
1586
  */
1586
1587
  'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
1587
1588
  /**
1588
1589
  * Forbid any invalid exports, i.e. re-export of the same name.
1589
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/export.md
1590
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/export.md
1590
1591
  */
1591
1592
  'import/export'?: Linter.RuleEntry<[]>
1592
1593
  /**
1593
1594
  * Ensure all exports appear after other statements.
1594
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/exports-last.md
1595
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/exports-last.md
1595
1596
  */
1596
1597
  'import/exports-last'?: Linter.RuleEntry<[]>
1597
1598
  /**
1598
1599
  * Ensure consistent use of file extension within the import path.
1599
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/extensions.md
1600
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/extensions.md
1600
1601
  */
1601
1602
  'import/extensions'?: Linter.RuleEntry<ImportExtensions>
1602
1603
  /**
1603
1604
  * Ensure all imports appear before other statements.
1604
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/first.md
1605
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/first.md
1605
1606
  */
1606
1607
  'import/first'?: Linter.RuleEntry<ImportFirst>
1607
1608
  /**
1608
1609
  * Prefer named exports to be grouped together in a single export declaration.
1609
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/group-exports.md
1610
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/group-exports.md
1610
1611
  */
1611
1612
  'import/group-exports'?: Linter.RuleEntry<[]>
1612
1613
  /**
1613
1614
  * Replaced by `import-x/first`.
1614
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/imports-first.md
1615
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/imports-first.md
1615
1616
  * @deprecated
1616
1617
  */
1617
1618
  'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
1618
1619
  /**
1619
1620
  * Enforce the maximum number of dependencies a module can have.
1620
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/max-dependencies.md
1621
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/max-dependencies.md
1621
1622
  */
1622
1623
  'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
1623
1624
  /**
1624
1625
  * Ensure named imports correspond to a named export in the remote file.
1625
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/named.md
1626
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/named.md
1626
1627
  */
1627
1628
  'import/named'?: Linter.RuleEntry<ImportNamed>
1628
1629
  /**
1629
1630
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
1630
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/namespace.md
1631
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/namespace.md
1631
1632
  */
1632
1633
  'import/namespace'?: Linter.RuleEntry<ImportNamespace>
1633
1634
  /**
1634
1635
  * Enforce a newline after import statements.
1635
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/newline-after-import.md
1636
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/newline-after-import.md
1636
1637
  */
1637
1638
  'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
1638
1639
  /**
1639
1640
  * Forbid import of modules using absolute paths.
1640
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-absolute-path.md
1641
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-absolute-path.md
1641
1642
  */
1642
1643
  'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
1643
1644
  /**
1644
1645
  * Forbid AMD `require` and `define` calls.
1645
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-amd.md
1646
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-amd.md
1646
1647
  */
1647
1648
  'import/no-amd'?: Linter.RuleEntry<[]>
1648
1649
  /**
1649
1650
  * Forbid anonymous values as default exports.
1650
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-anonymous-default-export.md
1651
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-anonymous-default-export.md
1651
1652
  */
1652
1653
  'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
1653
1654
  /**
1654
1655
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
1655
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-commonjs.md
1656
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-commonjs.md
1656
1657
  */
1657
1658
  'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
1658
1659
  /**
1659
1660
  * Forbid a module from importing a module with a dependency path back to itself.
1660
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-cycle.md
1661
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-cycle.md
1661
1662
  */
1662
1663
  'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
1663
1664
  /**
1664
1665
  * Forbid default exports.
1665
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-default-export.md
1666
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-default-export.md
1666
1667
  */
1667
1668
  'import/no-default-export'?: Linter.RuleEntry<[]>
1668
1669
  /**
1669
1670
  * Forbid imported names marked with `@deprecated` documentation tag.
1670
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-deprecated.md
1671
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-deprecated.md
1671
1672
  */
1672
1673
  'import/no-deprecated'?: Linter.RuleEntry<[]>
1673
1674
  /**
1674
1675
  * Forbid repeated import of the same module in multiple places.
1675
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-duplicates.md
1676
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-duplicates.md
1676
1677
  */
1677
1678
  'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
1678
1679
  /**
1679
1680
  * Forbid `require()` calls with expressions.
1680
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-dynamic-require.md
1681
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-dynamic-require.md
1681
1682
  */
1682
1683
  'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
1683
1684
  /**
1684
1685
  * Forbid empty named import blocks.
1685
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-empty-named-blocks.md
1686
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-empty-named-blocks.md
1686
1687
  */
1687
1688
  'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
1688
1689
  /**
1689
1690
  * Forbid the use of extraneous packages.
1690
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-extraneous-dependencies.md
1691
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-extraneous-dependencies.md
1691
1692
  */
1692
1693
  'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
1693
1694
  /**
1694
1695
  * Forbid import statements with CommonJS module.exports.
1695
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-import-module-exports.md
1696
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-import-module-exports.md
1696
1697
  */
1697
1698
  'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
1698
1699
  /**
1699
1700
  * Forbid importing the submodules of other modules.
1700
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-internal-modules.md
1701
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-internal-modules.md
1701
1702
  */
1702
1703
  'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
1703
1704
  /**
1704
1705
  * Forbid the use of mutable exports with `var` or `let`.
1705
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-mutable-exports.md
1706
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-mutable-exports.md
1706
1707
  */
1707
1708
  'import/no-mutable-exports'?: Linter.RuleEntry<[]>
1708
1709
  /**
1709
1710
  * Forbid use of exported name as identifier of default export.
1710
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-named-as-default.md
1711
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-named-as-default.md
1711
1712
  */
1712
1713
  'import/no-named-as-default'?: Linter.RuleEntry<[]>
1713
1714
  /**
1714
1715
  * Forbid use of exported name as property of default export.
1715
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-named-as-default-member.md
1716
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-named-as-default-member.md
1716
1717
  */
1717
1718
  'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
1718
1719
  /**
1719
1720
  * Forbid named default exports.
1720
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-named-default.md
1721
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-named-default.md
1721
1722
  */
1722
1723
  'import/no-named-default'?: Linter.RuleEntry<[]>
1723
1724
  /**
1724
1725
  * Forbid named exports.
1725
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-named-export.md
1726
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-named-export.md
1726
1727
  */
1727
1728
  'import/no-named-export'?: Linter.RuleEntry<[]>
1728
1729
  /**
1729
1730
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
1730
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-namespace.md
1731
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-namespace.md
1731
1732
  */
1732
1733
  'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
1733
1734
  /**
1734
1735
  * Forbid Node.js builtin modules.
1735
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-nodejs-modules.md
1736
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-nodejs-modules.md
1736
1737
  */
1737
1738
  'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
1738
1739
  /**
1739
1740
  * Forbid importing packages through relative paths.
1740
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-relative-packages.md
1741
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-relative-packages.md
1741
1742
  */
1742
1743
  'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
1743
1744
  /**
1744
1745
  * Forbid importing modules from parent directories.
1745
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-relative-parent-imports.md
1746
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-relative-parent-imports.md
1746
1747
  */
1747
1748
  'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
1748
1749
  /**
1749
1750
  * Forbid importing a default export by a different name.
1750
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-rename-default.md
1751
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-rename-default.md
1751
1752
  */
1752
1753
  'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
1753
1754
  /**
1754
1755
  * Enforce which files can be imported in a given folder.
1755
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-restricted-paths.md
1756
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-restricted-paths.md
1756
1757
  */
1757
1758
  'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
1758
1759
  /**
1759
1760
  * Forbid a module from importing itself.
1760
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-self-import.md
1761
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-self-import.md
1761
1762
  */
1762
1763
  'import/no-self-import'?: Linter.RuleEntry<[]>
1763
1764
  /**
1764
1765
  * Forbid unassigned imports.
1765
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-unassigned-import.md
1766
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-unassigned-import.md
1766
1767
  */
1767
1768
  'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
1768
1769
  /**
1769
1770
  * Ensure imports point to a file/module that can be resolved.
1770
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-unresolved.md
1771
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-unresolved.md
1771
1772
  */
1772
1773
  'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
1773
1774
  /**
1774
1775
  * Forbid modules without exports, or exports without matching import in another module.
1775
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-unused-modules.md
1776
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-unused-modules.md
1776
1777
  */
1777
1778
  'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
1778
1779
  /**
1779
1780
  * Forbid unnecessary path segments in import and require statements.
1780
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-useless-path-segments.md
1781
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-useless-path-segments.md
1781
1782
  */
1782
1783
  'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
1783
1784
  /**
1784
1785
  * Forbid webpack loader syntax in imports.
1785
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/no-webpack-loader-syntax.md
1786
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/no-webpack-loader-syntax.md
1786
1787
  */
1787
1788
  'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
1788
1789
  /**
1789
1790
  * Enforce a convention in module import order.
1790
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/order.md
1791
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/order.md
1791
1792
  */
1792
1793
  'import/order'?: Linter.RuleEntry<ImportOrder>
1793
1794
  /**
1794
1795
  * Prefer a default export if module exports a single name or multiple names.
1795
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/prefer-default-export.md
1796
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/prefer-default-export.md
1796
1797
  */
1797
1798
  'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
1798
1799
  /**
1799
1800
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
1800
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.13.3/docs/rules/unambiguous.md
1801
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.15.0/docs/rules/unambiguous.md
1801
1802
  */
1802
1803
  'import/unambiguous'?: Linter.RuleEntry<[]>
1803
1804
  /**
@@ -5907,77 +5908,82 @@ interface RuleOptions {
5907
5908
  'sonarjs/xpath'?: Linter.RuleEntry<[]>
5908
5909
  /**
5909
5910
  * Interactions should be awaited
5910
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/await-interactions.md
5911
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/await-interactions.md
5911
5912
  */
5912
5913
  'storybook/await-interactions'?: Linter.RuleEntry<[]>
5913
5914
  /**
5914
5915
  * Pass a context when invoking play function of another story
5915
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/context-in-play-function.md
5916
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/context-in-play-function.md
5916
5917
  */
5917
5918
  'storybook/context-in-play-function'?: Linter.RuleEntry<[]>
5918
5919
  /**
5919
5920
  * The component property should be set
5920
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/csf-component.md
5921
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/csf-component.md
5921
5922
  */
5922
5923
  'storybook/csf-component'?: Linter.RuleEntry<[]>
5923
5924
  /**
5924
5925
  * Story files should have a default export
5925
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/default-exports.md
5926
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/default-exports.md
5926
5927
  */
5927
5928
  'storybook/default-exports'?: Linter.RuleEntry<[]>
5928
5929
  /**
5929
5930
  * Deprecated hierarchy separator in title property
5930
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/hierarchy-separator.md
5931
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/hierarchy-separator.md
5931
5932
  */
5932
5933
  'storybook/hierarchy-separator'?: Linter.RuleEntry<[]>
5933
5934
  /**
5934
5935
  * Meta should only have inline properties
5935
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/meta-inline-properties.md
5936
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/meta-inline-properties.md
5936
5937
  */
5937
5938
  'storybook/meta-inline-properties'?: Linter.RuleEntry<StorybookMetaInlineProperties>
5938
5939
  /**
5939
5940
  * Meta should use `satisfies Meta`
5940
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/meta-satisfies-type.md
5941
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/meta-satisfies-type.md
5941
5942
  */
5942
5943
  'storybook/meta-satisfies-type'?: Linter.RuleEntry<[]>
5943
5944
  /**
5944
5945
  * A story should not have a redundant name property
5945
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/no-redundant-story-name.md
5946
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/no-redundant-story-name.md
5946
5947
  */
5947
5948
  'storybook/no-redundant-story-name'?: Linter.RuleEntry<[]>
5949
+ /**
5950
+ * Do not import renderer packages directly in stories
5951
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/no-renderer-packages.md
5952
+ */
5953
+ 'storybook/no-renderer-packages'?: Linter.RuleEntry<[]>
5948
5954
  /**
5949
5955
  * storiesOf is deprecated and should not be used
5950
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/no-stories-of.md
5956
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/no-stories-of.md
5951
5957
  */
5952
5958
  'storybook/no-stories-of'?: Linter.RuleEntry<[]>
5953
5959
  /**
5954
5960
  * Do not define a title in meta
5955
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/no-title-property-in-meta.md
5961
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/no-title-property-in-meta.md
5956
5962
  */
5957
5963
  'storybook/no-title-property-in-meta'?: Linter.RuleEntry<[]>
5958
5964
  /**
5959
5965
  * This rule identifies storybook addons that are invalid because they are either not installed or contain a typo in their name.
5960
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/no-uninstalled-addons.md
5966
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/no-uninstalled-addons.md
5961
5967
  */
5962
5968
  'storybook/no-uninstalled-addons'?: Linter.RuleEntry<StorybookNoUninstalledAddons>
5963
5969
  /**
5964
5970
  * Stories should use PascalCase
5965
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/prefer-pascal-case.md
5971
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/prefer-pascal-case.md
5966
5972
  */
5967
5973
  'storybook/prefer-pascal-case'?: Linter.RuleEntry<[]>
5968
5974
  /**
5969
5975
  * A story file must contain at least one story export
5970
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/story-exports.md
5976
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/story-exports.md
5971
5977
  */
5972
5978
  'storybook/story-exports'?: Linter.RuleEntry<[]>
5973
5979
  /**
5974
5980
  * Use expect from `@storybook/test`, `storybook/test` or `@storybook/jest`
5975
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/use-storybook-expect.md
5981
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/use-storybook-expect.md
5976
5982
  */
5977
5983
  'storybook/use-storybook-expect'?: Linter.RuleEntry<[]>
5978
5984
  /**
5979
5985
  * Do not use testing-library directly on stories
5980
- * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/use-storybook-testing-library.md
5986
+ * @see https://github.com/storybookjs/storybook/blob/next/code/lib/eslint-plugin/docs/rules/use-storybook-testing-library.md
5981
5987
  */
5982
5988
  'storybook/use-storybook-testing-library'?: Linter.RuleEntry<[]>
5983
5989
  /**
@@ -10333,10 +10339,10 @@ type JsdocCheckLineAlignment = []|[("always" | "never" | "any")]|[("always" | "n
10333
10339
  postTag?: number
10334
10340
  postType?: number
10335
10341
  }
10342
+ disableWrapIndent?: boolean
10336
10343
  preserveMainDescriptionPostDelimiter?: boolean
10337
10344
  tags?: string[]
10338
10345
  wrapIndent?: string
10339
- disableWrapIndent?: boolean
10340
10346
  }]
10341
10347
  // ----- jsdoc/check-param-names -----
10342
10348
  type JsdocCheckParamNames = []|[{
@@ -16424,6 +16430,8 @@ type ResolvedOptions<T> = T extends boolean ? never : NonNullable<T>;
16424
16430
  declare const resolveSubOptions: <K extends keyof OptionsConfig>(options: OptionsConfig, key: K) => ResolvedOptions<OptionsConfig[K]>;
16425
16431
  declare const getOverrides: <K extends keyof OptionsConfig>(options: OptionsConfig, key: K) => Partial<Linter.RulesRecord & RuleOptions>;
16426
16432
  declare const getFiles: <K extends keyof OptionsConfig>(options: OptionsConfig, key: K) => string[] | undefined;
16427
- declare const createConfig: (options?: Omit<TypedFlatConfigItem, "files"> & OptionsConfig, ...userConfigs: Awaitable<FlatConfigComposer<any, any> | Linter.Config[] | TypedFlatConfigItem | TypedFlatConfigItem[]>[]) => Promise<FlatConfigComposer<TypedFlatConfigItem, ConfigNames>>;
16433
+ type PromiseFlatConfigComposer = Promise<FlatConfigComposer<TypedFlatConfigItem, ConfigNames>>;
16434
+ declare const createConfig: (options?: Omit<TypedFlatConfigItem, "files"> & OptionsConfig, ...userConfigs: Awaitable<FlatConfigComposer<any, any> | Linter.Config[] | TypedFlatConfigItem | TypedFlatConfigItem[]>[]) => PromiseFlatConfigComposer;
16428
16435
 
16429
- export { type Awaitable, type ConfigNames, type OptionsComponentExtensions, type OptionsConfig, type OptionsCwd, type OptionsFiles, type OptionsFormatters, type OptionsHasPrettier, type OptionsIsInEditor, type OptionsOverrides, type OptionsPackageJson, type OptionsRegExp, type OptionsSilentConsoleLogs, type OptionsStylistic, type OptionsTypeScriptParserOptions, type OptionsTypeScriptWithTypes, type OptionsTypescript, type OptionsUnicorn, type OptionsUnoCSS, type ResolvedOptions, type Rules, type StylisticConfig, type TypedFlatConfigItem, createConfig, getFiles, getFilesGlobs, getOverrides, resolveSubOptions };
16436
+ export { createConfig, getFiles, getFilesGlobs, getOverrides, resolveSubOptions };
16437
+ export type { Awaitable, ConfigNames, OptionsComponentExtensions, OptionsConfig, OptionsCwd, OptionsFiles, OptionsFormatters, OptionsHasPrettier, OptionsIsInEditor, OptionsOverrides, OptionsPackageJson, OptionsRegExp, OptionsSilentConsoleLogs, OptionsStylistic, OptionsTypeScriptParserOptions, OptionsTypeScriptWithTypes, OptionsTypescript, OptionsUnicorn, OptionsUnoCSS, PromiseFlatConfigComposer, ResolvedOptions, Rules, StylisticConfig, TypedFlatConfigItem };