@jimmy.codes/eslint-config 3.28.1 → 3.29.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.
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +399 -276
- package/dist/index.d.mts +399 -276
- package/dist/index.mjs +1 -1
- package/package.json +16 -16
package/dist/index.d.cts
CHANGED
|
@@ -654,7 +654,7 @@ interface RuleOptions {
|
|
|
654
654
|
*/
|
|
655
655
|
'@typescript-eslint/no-wrapper-object-types'?: Linter.RuleEntry<[]>
|
|
656
656
|
/**
|
|
657
|
-
* Enforce non-null assertions over explicit type
|
|
657
|
+
* Enforce non-null assertions over explicit type assertions
|
|
658
658
|
* @see https://typescript-eslint.io/rules/non-nullable-type-assertion-style
|
|
659
659
|
*/
|
|
660
660
|
'@typescript-eslint/non-nullable-type-assertion-style'?: Linter.RuleEntry<[]>
|
|
@@ -739,7 +739,7 @@ interface RuleOptions {
|
|
|
739
739
|
*/
|
|
740
740
|
'@typescript-eslint/prefer-readonly-parameter-types'?: Linter.RuleEntry<TypescriptEslintPreferReadonlyParameterTypes>
|
|
741
741
|
/**
|
|
742
|
-
* Enforce using type parameter when calling `Array#reduce` instead of
|
|
742
|
+
* Enforce using type parameter when calling `Array#reduce` instead of using a type assertion
|
|
743
743
|
* @see https://typescript-eslint.io/rules/prefer-reduce-type-parameter
|
|
744
744
|
*/
|
|
745
745
|
'@typescript-eslint/prefer-reduce-type-parameter'?: Linter.RuleEntry<[]>
|
|
@@ -1243,7 +1243,7 @@ interface RuleOptions {
|
|
|
1243
1243
|
*/
|
|
1244
1244
|
'default-case'?: Linter.RuleEntry<DefaultCase>
|
|
1245
1245
|
/**
|
|
1246
|
-
* Enforce default clauses in switch statements to be last
|
|
1246
|
+
* Enforce `default` clauses in switch statements to be last
|
|
1247
1247
|
* @see https://eslint.org/docs/latest/rules/default-case-last
|
|
1248
1248
|
*/
|
|
1249
1249
|
'default-case-last'?: Linter.RuleEntry<[]>
|
|
@@ -1275,7 +1275,7 @@ interface RuleOptions {
|
|
|
1275
1275
|
*/
|
|
1276
1276
|
'eqeqeq'?: Linter.RuleEntry<Eqeqeq>
|
|
1277
1277
|
/**
|
|
1278
|
-
* Enforce
|
|
1278
|
+
* Enforce `for` loop update clause moving the counter in the right direction
|
|
1279
1279
|
* @see https://eslint.org/docs/latest/rules/for-direction
|
|
1280
1280
|
*/
|
|
1281
1281
|
'for-direction'?: Linter.RuleEntry<[]>
|
|
@@ -1677,312 +1677,312 @@ interface RuleOptions {
|
|
|
1677
1677
|
'jest-dom/prefer-to-have-value'?: Linter.RuleEntry<[]>
|
|
1678
1678
|
/**
|
|
1679
1679
|
* Enforce `test` and `it` usage conventions
|
|
1680
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1680
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/consistent-test-it.md
|
|
1681
1681
|
*/
|
|
1682
1682
|
'jest/consistent-test-it'?: Linter.RuleEntry<JestConsistentTestIt>
|
|
1683
1683
|
/**
|
|
1684
1684
|
* Enforce assertion to be made in a test body
|
|
1685
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1685
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/expect-expect.md
|
|
1686
1686
|
*/
|
|
1687
1687
|
'jest/expect-expect'?: Linter.RuleEntry<JestExpectExpect>
|
|
1688
1688
|
/**
|
|
1689
1689
|
* Enforces a maximum number assertion calls in a test body
|
|
1690
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1690
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/max-expects.md
|
|
1691
1691
|
*/
|
|
1692
1692
|
'jest/max-expects'?: Linter.RuleEntry<JestMaxExpects>
|
|
1693
1693
|
/**
|
|
1694
1694
|
* Enforces a maximum depth to nested describe calls
|
|
1695
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1695
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/max-nested-describe.md
|
|
1696
1696
|
*/
|
|
1697
1697
|
'jest/max-nested-describe'?: Linter.RuleEntry<JestMaxNestedDescribe>
|
|
1698
1698
|
/**
|
|
1699
1699
|
* Disallow alias methods
|
|
1700
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1700
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-alias-methods.md
|
|
1701
1701
|
*/
|
|
1702
1702
|
'jest/no-alias-methods'?: Linter.RuleEntry<[]>
|
|
1703
1703
|
/**
|
|
1704
1704
|
* Disallow commented out tests
|
|
1705
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1705
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-commented-out-tests.md
|
|
1706
1706
|
*/
|
|
1707
1707
|
'jest/no-commented-out-tests'?: Linter.RuleEntry<[]>
|
|
1708
1708
|
/**
|
|
1709
1709
|
* Disallow calling `expect` conditionally
|
|
1710
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1710
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-conditional-expect.md
|
|
1711
1711
|
*/
|
|
1712
1712
|
'jest/no-conditional-expect'?: Linter.RuleEntry<[]>
|
|
1713
1713
|
/**
|
|
1714
1714
|
* Disallow conditional logic in tests
|
|
1715
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1715
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-conditional-in-test.md
|
|
1716
1716
|
*/
|
|
1717
1717
|
'jest/no-conditional-in-test'?: Linter.RuleEntry<[]>
|
|
1718
1718
|
/**
|
|
1719
1719
|
* Disallow confusing usages of jest.setTimeout
|
|
1720
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1720
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-confusing-set-timeout.md
|
|
1721
1721
|
*/
|
|
1722
1722
|
'jest/no-confusing-set-timeout'?: Linter.RuleEntry<[]>
|
|
1723
1723
|
/**
|
|
1724
1724
|
* Disallow use of deprecated functions
|
|
1725
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1725
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-deprecated-functions.md
|
|
1726
1726
|
*/
|
|
1727
1727
|
'jest/no-deprecated-functions'?: Linter.RuleEntry<[]>
|
|
1728
1728
|
/**
|
|
1729
1729
|
* Disallow disabled tests
|
|
1730
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1730
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-disabled-tests.md
|
|
1731
1731
|
*/
|
|
1732
1732
|
'jest/no-disabled-tests'?: Linter.RuleEntry<[]>
|
|
1733
1733
|
/**
|
|
1734
1734
|
* Disallow using a callback in asynchronous tests and hooks
|
|
1735
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1735
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-done-callback.md
|
|
1736
1736
|
*/
|
|
1737
1737
|
'jest/no-done-callback'?: Linter.RuleEntry<[]>
|
|
1738
1738
|
/**
|
|
1739
1739
|
* Disallow duplicate setup and teardown hooks
|
|
1740
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1740
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-duplicate-hooks.md
|
|
1741
1741
|
*/
|
|
1742
1742
|
'jest/no-duplicate-hooks'?: Linter.RuleEntry<[]>
|
|
1743
1743
|
/**
|
|
1744
1744
|
* Disallow using `exports` in files containing tests
|
|
1745
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1745
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-export.md
|
|
1746
1746
|
*/
|
|
1747
1747
|
'jest/no-export'?: Linter.RuleEntry<[]>
|
|
1748
1748
|
/**
|
|
1749
1749
|
* Disallow focused tests
|
|
1750
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1750
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-focused-tests.md
|
|
1751
1751
|
*/
|
|
1752
1752
|
'jest/no-focused-tests'?: Linter.RuleEntry<[]>
|
|
1753
1753
|
/**
|
|
1754
1754
|
* Disallow setup and teardown hooks
|
|
1755
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1755
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-hooks.md
|
|
1756
1756
|
*/
|
|
1757
1757
|
'jest/no-hooks'?: Linter.RuleEntry<JestNoHooks>
|
|
1758
1758
|
/**
|
|
1759
1759
|
* Disallow identical titles
|
|
1760
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1760
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-identical-title.md
|
|
1761
1761
|
*/
|
|
1762
1762
|
'jest/no-identical-title'?: Linter.RuleEntry<[]>
|
|
1763
1763
|
/**
|
|
1764
1764
|
* Disallow string interpolation inside snapshots
|
|
1765
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1765
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-interpolation-in-snapshots.md
|
|
1766
1766
|
*/
|
|
1767
1767
|
'jest/no-interpolation-in-snapshots'?: Linter.RuleEntry<[]>
|
|
1768
1768
|
/**
|
|
1769
1769
|
* Disallow Jasmine globals
|
|
1770
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1770
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-jasmine-globals.md
|
|
1771
1771
|
*/
|
|
1772
1772
|
'jest/no-jasmine-globals'?: Linter.RuleEntry<[]>
|
|
1773
1773
|
/**
|
|
1774
1774
|
* Disallow large snapshots
|
|
1775
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1775
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-large-snapshots.md
|
|
1776
1776
|
*/
|
|
1777
1777
|
'jest/no-large-snapshots'?: Linter.RuleEntry<JestNoLargeSnapshots>
|
|
1778
1778
|
/**
|
|
1779
1779
|
* Disallow manually importing from `__mocks__`
|
|
1780
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1780
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-mocks-import.md
|
|
1781
1781
|
*/
|
|
1782
1782
|
'jest/no-mocks-import'?: Linter.RuleEntry<[]>
|
|
1783
1783
|
/**
|
|
1784
1784
|
* Disallow specific `jest.` methods
|
|
1785
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1785
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-restricted-jest-methods.md
|
|
1786
1786
|
*/
|
|
1787
1787
|
'jest/no-restricted-jest-methods'?: Linter.RuleEntry<JestNoRestrictedJestMethods>
|
|
1788
1788
|
/**
|
|
1789
1789
|
* Disallow specific matchers & modifiers
|
|
1790
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1790
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-restricted-matchers.md
|
|
1791
1791
|
*/
|
|
1792
1792
|
'jest/no-restricted-matchers'?: Linter.RuleEntry<JestNoRestrictedMatchers>
|
|
1793
1793
|
/**
|
|
1794
1794
|
* Disallow using `expect` outside of `it` or `test` blocks
|
|
1795
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1795
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-standalone-expect.md
|
|
1796
1796
|
*/
|
|
1797
1797
|
'jest/no-standalone-expect'?: Linter.RuleEntry<JestNoStandaloneExpect>
|
|
1798
1798
|
/**
|
|
1799
1799
|
* Require using `.only` and `.skip` over `f` and `x`
|
|
1800
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1800
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-test-prefixes.md
|
|
1801
1801
|
*/
|
|
1802
1802
|
'jest/no-test-prefixes'?: Linter.RuleEntry<[]>
|
|
1803
1803
|
/**
|
|
1804
1804
|
* Disallow explicitly returning from tests
|
|
1805
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1805
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-test-return-statement.md
|
|
1806
1806
|
*/
|
|
1807
1807
|
'jest/no-test-return-statement'?: Linter.RuleEntry<[]>
|
|
1808
1808
|
/**
|
|
1809
1809
|
* Disallow using `jest.mock()` factories without an explicit type parameter
|
|
1810
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1810
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/no-untyped-mock-factory.md
|
|
1811
1811
|
*/
|
|
1812
1812
|
'jest/no-untyped-mock-factory'?: Linter.RuleEntry<[]>
|
|
1813
1813
|
/**
|
|
1814
1814
|
* Enforce padding around `afterAll` blocks
|
|
1815
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1815
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/padding-around-after-all-blocks.md
|
|
1816
1816
|
*/
|
|
1817
1817
|
'jest/padding-around-after-all-blocks'?: Linter.RuleEntry<[]>
|
|
1818
1818
|
/**
|
|
1819
1819
|
* Enforce padding around `afterEach` blocks
|
|
1820
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1820
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/padding-around-after-each-blocks.md
|
|
1821
1821
|
*/
|
|
1822
1822
|
'jest/padding-around-after-each-blocks'?: Linter.RuleEntry<[]>
|
|
1823
1823
|
/**
|
|
1824
1824
|
* Enforce padding around Jest functions
|
|
1825
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1825
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/padding-around-all.md
|
|
1826
1826
|
*/
|
|
1827
1827
|
'jest/padding-around-all'?: Linter.RuleEntry<[]>
|
|
1828
1828
|
/**
|
|
1829
1829
|
* Enforce padding around `beforeAll` blocks
|
|
1830
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1830
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/padding-around-before-all-blocks.md
|
|
1831
1831
|
*/
|
|
1832
1832
|
'jest/padding-around-before-all-blocks'?: Linter.RuleEntry<[]>
|
|
1833
1833
|
/**
|
|
1834
1834
|
* Enforce padding around `beforeEach` blocks
|
|
1835
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1835
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/padding-around-before-each-blocks.md
|
|
1836
1836
|
*/
|
|
1837
1837
|
'jest/padding-around-before-each-blocks'?: Linter.RuleEntry<[]>
|
|
1838
1838
|
/**
|
|
1839
1839
|
* Enforce padding around `describe` blocks
|
|
1840
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1840
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/padding-around-describe-blocks.md
|
|
1841
1841
|
*/
|
|
1842
1842
|
'jest/padding-around-describe-blocks'?: Linter.RuleEntry<[]>
|
|
1843
1843
|
/**
|
|
1844
1844
|
* Enforce padding around `expect` groups
|
|
1845
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1845
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/padding-around-expect-groups.md
|
|
1846
1846
|
*/
|
|
1847
1847
|
'jest/padding-around-expect-groups'?: Linter.RuleEntry<[]>
|
|
1848
1848
|
/**
|
|
1849
1849
|
* Enforce padding around afterAll blocks
|
|
1850
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1850
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/padding-around-test-blocks.md
|
|
1851
1851
|
*/
|
|
1852
1852
|
'jest/padding-around-test-blocks'?: Linter.RuleEntry<[]>
|
|
1853
1853
|
/**
|
|
1854
1854
|
* Suggest using `toBeCalledWith()` or `toHaveBeenCalledWith()`
|
|
1855
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1855
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-called-with.md
|
|
1856
1856
|
*/
|
|
1857
1857
|
'jest/prefer-called-with'?: Linter.RuleEntry<[]>
|
|
1858
1858
|
/**
|
|
1859
1859
|
* Suggest using the built-in comparison matchers
|
|
1860
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1860
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-comparison-matcher.md
|
|
1861
1861
|
*/
|
|
1862
1862
|
'jest/prefer-comparison-matcher'?: Linter.RuleEntry<[]>
|
|
1863
1863
|
/**
|
|
1864
1864
|
* Prefer using `.each` rather than manual loops
|
|
1865
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1865
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-each.md
|
|
1866
1866
|
*/
|
|
1867
1867
|
'jest/prefer-each'?: Linter.RuleEntry<[]>
|
|
1868
1868
|
/**
|
|
1869
1869
|
* Suggest using the built-in equality matchers
|
|
1870
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1870
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-equality-matcher.md
|
|
1871
1871
|
*/
|
|
1872
1872
|
'jest/prefer-equality-matcher'?: Linter.RuleEntry<[]>
|
|
1873
1873
|
/**
|
|
1874
1874
|
* Suggest using `expect.assertions()` OR `expect.hasAssertions()`
|
|
1875
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1875
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-expect-assertions.md
|
|
1876
1876
|
*/
|
|
1877
1877
|
'jest/prefer-expect-assertions'?: Linter.RuleEntry<JestPreferExpectAssertions>
|
|
1878
1878
|
/**
|
|
1879
1879
|
* Prefer `await expect(...).resolves` over `expect(await ...)` syntax
|
|
1880
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1880
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-expect-resolves.md
|
|
1881
1881
|
*/
|
|
1882
1882
|
'jest/prefer-expect-resolves'?: Linter.RuleEntry<[]>
|
|
1883
1883
|
/**
|
|
1884
1884
|
* Prefer having hooks in a consistent order
|
|
1885
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1885
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-hooks-in-order.md
|
|
1886
1886
|
*/
|
|
1887
1887
|
'jest/prefer-hooks-in-order'?: Linter.RuleEntry<[]>
|
|
1888
1888
|
/**
|
|
1889
1889
|
* Suggest having hooks before any test cases
|
|
1890
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1890
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-hooks-on-top.md
|
|
1891
1891
|
*/
|
|
1892
1892
|
'jest/prefer-hooks-on-top'?: Linter.RuleEntry<[]>
|
|
1893
1893
|
/**
|
|
1894
1894
|
* Prefer importing Jest globals
|
|
1895
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1895
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-importing-jest-globals.md
|
|
1896
1896
|
*/
|
|
1897
1897
|
'jest/prefer-importing-jest-globals'?: Linter.RuleEntry<JestPreferImportingJestGlobals>
|
|
1898
1898
|
/**
|
|
1899
1899
|
* Prefer `jest.mocked()` over `fn as jest.Mock`
|
|
1900
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1900
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-jest-mocked.md
|
|
1901
1901
|
*/
|
|
1902
1902
|
'jest/prefer-jest-mocked'?: Linter.RuleEntry<[]>
|
|
1903
1903
|
/**
|
|
1904
1904
|
* Enforce lowercase test names
|
|
1905
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1905
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-lowercase-title.md
|
|
1906
1906
|
*/
|
|
1907
1907
|
'jest/prefer-lowercase-title'?: Linter.RuleEntry<JestPreferLowercaseTitle>
|
|
1908
1908
|
/**
|
|
1909
1909
|
* Prefer mock resolved/rejected shorthands for promises
|
|
1910
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1910
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-mock-promise-shorthand.md
|
|
1911
1911
|
*/
|
|
1912
1912
|
'jest/prefer-mock-promise-shorthand'?: Linter.RuleEntry<[]>
|
|
1913
1913
|
/**
|
|
1914
1914
|
* Prefer including a hint with external snapshots
|
|
1915
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1915
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-snapshot-hint.md
|
|
1916
1916
|
*/
|
|
1917
1917
|
'jest/prefer-snapshot-hint'?: Linter.RuleEntry<JestPreferSnapshotHint>
|
|
1918
1918
|
/**
|
|
1919
1919
|
* Suggest using `jest.spyOn()`
|
|
1920
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1920
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-spy-on.md
|
|
1921
1921
|
*/
|
|
1922
1922
|
'jest/prefer-spy-on'?: Linter.RuleEntry<[]>
|
|
1923
1923
|
/**
|
|
1924
1924
|
* Suggest using `toStrictEqual()`
|
|
1925
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1925
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-strict-equal.md
|
|
1926
1926
|
*/
|
|
1927
1927
|
'jest/prefer-strict-equal'?: Linter.RuleEntry<[]>
|
|
1928
1928
|
/**
|
|
1929
1929
|
* Suggest using `toBe()` for primitive literals
|
|
1930
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1930
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-to-be.md
|
|
1931
1931
|
*/
|
|
1932
1932
|
'jest/prefer-to-be'?: Linter.RuleEntry<[]>
|
|
1933
1933
|
/**
|
|
1934
1934
|
* Suggest using `toContain()`
|
|
1935
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1935
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-to-contain.md
|
|
1936
1936
|
*/
|
|
1937
1937
|
'jest/prefer-to-contain'?: Linter.RuleEntry<[]>
|
|
1938
1938
|
/**
|
|
1939
1939
|
* Suggest using `toHaveLength()`
|
|
1940
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1940
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-to-have-length.md
|
|
1941
1941
|
*/
|
|
1942
1942
|
'jest/prefer-to-have-length'?: Linter.RuleEntry<[]>
|
|
1943
1943
|
/**
|
|
1944
1944
|
* Suggest using `test.todo`
|
|
1945
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1945
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/prefer-todo.md
|
|
1946
1946
|
*/
|
|
1947
1947
|
'jest/prefer-todo'?: Linter.RuleEntry<[]>
|
|
1948
1948
|
/**
|
|
1949
1949
|
* Require setup and teardown code to be within a hook
|
|
1950
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1950
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/require-hook.md
|
|
1951
1951
|
*/
|
|
1952
1952
|
'jest/require-hook'?: Linter.RuleEntry<JestRequireHook>
|
|
1953
1953
|
/**
|
|
1954
1954
|
* Require a message for `toThrow()`
|
|
1955
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1955
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/require-to-throw-message.md
|
|
1956
1956
|
*/
|
|
1957
1957
|
'jest/require-to-throw-message'?: Linter.RuleEntry<[]>
|
|
1958
1958
|
/**
|
|
1959
1959
|
* Require test cases and hooks to be inside a `describe` block
|
|
1960
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1960
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/require-top-level-describe.md
|
|
1961
1961
|
*/
|
|
1962
1962
|
'jest/require-top-level-describe'?: Linter.RuleEntry<JestRequireTopLevelDescribe>
|
|
1963
1963
|
/**
|
|
1964
1964
|
* Enforce unbound methods are called with their expected scope
|
|
1965
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1965
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/unbound-method.md
|
|
1966
1966
|
*/
|
|
1967
1967
|
'jest/unbound-method'?: Linter.RuleEntry<JestUnboundMethod>
|
|
1968
1968
|
/**
|
|
1969
1969
|
* Enforce valid `describe()` callback
|
|
1970
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1970
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/valid-describe-callback.md
|
|
1971
1971
|
*/
|
|
1972
1972
|
'jest/valid-describe-callback'?: Linter.RuleEntry<[]>
|
|
1973
1973
|
/**
|
|
1974
1974
|
* Enforce valid `expect()` usage
|
|
1975
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1975
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/valid-expect.md
|
|
1976
1976
|
*/
|
|
1977
1977
|
'jest/valid-expect'?: Linter.RuleEntry<JestValidExpect>
|
|
1978
1978
|
/**
|
|
1979
1979
|
* Require promises that have expectations in their chain to be valid
|
|
1980
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1980
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/valid-expect-in-promise.md
|
|
1981
1981
|
*/
|
|
1982
1982
|
'jest/valid-expect-in-promise'?: Linter.RuleEntry<[]>
|
|
1983
1983
|
/**
|
|
1984
1984
|
* Enforce valid titles
|
|
1985
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1985
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.10.0/docs/rules/valid-title.md
|
|
1986
1986
|
*/
|
|
1987
1987
|
'jest/valid-title'?: Linter.RuleEntry<JestValidTitle>
|
|
1988
1988
|
/**
|
|
@@ -3273,7 +3273,7 @@ interface RuleOptions {
|
|
|
3273
3273
|
*/
|
|
3274
3274
|
'no-octal-escape'?: Linter.RuleEntry<[]>
|
|
3275
3275
|
/**
|
|
3276
|
-
* Disallow reassigning
|
|
3276
|
+
* Disallow reassigning function parameters
|
|
3277
3277
|
* @see https://eslint.org/docs/latest/rules/no-param-reassign
|
|
3278
3278
|
*/
|
|
3279
3279
|
'no-param-reassign'?: Linter.RuleEntry<NoParamReassign>
|
|
@@ -3368,7 +3368,7 @@ interface RuleOptions {
|
|
|
3368
3368
|
*/
|
|
3369
3369
|
'no-return-await'?: Linter.RuleEntry<[]>
|
|
3370
3370
|
/**
|
|
3371
|
-
* Disallow `javascript:`
|
|
3371
|
+
* Disallow `javascript:` URLs
|
|
3372
3372
|
* @see https://eslint.org/docs/latest/rules/no-script-url
|
|
3373
3373
|
*/
|
|
3374
3374
|
'no-script-url'?: Linter.RuleEntry<[]>
|
|
@@ -4051,7 +4051,7 @@ interface RuleOptions {
|
|
|
4051
4051
|
*/
|
|
4052
4052
|
'prefer-object-has-own'?: Linter.RuleEntry<[]>
|
|
4053
4053
|
/**
|
|
4054
|
-
* Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead
|
|
4054
|
+
* Disallow using `Object.assign` with an object literal as the first argument and prefer the use of object spread instead
|
|
4055
4055
|
* @see https://eslint.org/docs/latest/rules/prefer-object-spread
|
|
4056
4056
|
*/
|
|
4057
4057
|
'prefer-object-spread'?: Linter.RuleEntry<[]>
|
|
@@ -5056,7 +5056,7 @@ interface RuleOptions {
|
|
|
5056
5056
|
*/
|
|
5057
5057
|
'require-await'?: Linter.RuleEntry<[]>
|
|
5058
5058
|
/**
|
|
5059
|
-
* Enforce the use of `u` or `v` flag on
|
|
5059
|
+
* Enforce the use of `u` or `v` flag on regular expressions
|
|
5060
5060
|
* @see https://eslint.org/docs/latest/rules/require-unicode-regexp
|
|
5061
5061
|
*/
|
|
5062
5062
|
'require-unicode-regexp'?: Linter.RuleEntry<RequireUnicodeRegexp>
|
|
@@ -6255,7 +6255,7 @@ interface RuleOptions {
|
|
|
6255
6255
|
*/
|
|
6256
6256
|
'vitest/padding-around-expect-groups'?: Linter.RuleEntry<[]>
|
|
6257
6257
|
/**
|
|
6258
|
-
* Enforce padding around
|
|
6258
|
+
* Enforce padding around `test` blocks
|
|
6259
6259
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-test-blocks.md
|
|
6260
6260
|
*/
|
|
6261
6261
|
'vitest/padding-around-test-blocks'?: Linter.RuleEntry<[]>
|
|
@@ -6360,7 +6360,7 @@ interface RuleOptions {
|
|
|
6360
6360
|
*/
|
|
6361
6361
|
'vitest/prefer-todo'?: Linter.RuleEntry<[]>
|
|
6362
6362
|
/**
|
|
6363
|
-
*
|
|
6363
|
+
* require `vi.mocked()` over `fn as Mock`
|
|
6364
6364
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
|
|
6365
6365
|
*/
|
|
6366
6366
|
'vitest/prefer-vi-mocked'?: Linter.RuleEntry<[]>
|
|
@@ -6395,7 +6395,7 @@ interface RuleOptions {
|
|
|
6395
6395
|
*/
|
|
6396
6396
|
'vitest/valid-expect'?: Linter.RuleEntry<VitestValidExpect>
|
|
6397
6397
|
/**
|
|
6398
|
-
*
|
|
6398
|
+
* require promises that have expectations in their chain to be valid
|
|
6399
6399
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-expect-in-promise.md
|
|
6400
6400
|
*/
|
|
6401
6401
|
'vitest/valid-expect-in-promise'?: Linter.RuleEntry<[]>
|
|
@@ -6497,7 +6497,7 @@ type TypescriptEslintConsistentTypeAssertions = []|[({
|
|
|
6497
6497
|
assertionStyle: "never"
|
|
6498
6498
|
} | {
|
|
6499
6499
|
|
|
6500
|
-
assertionStyle
|
|
6500
|
+
assertionStyle?: ("as" | "angle-bracket")
|
|
6501
6501
|
|
|
6502
6502
|
objectLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
|
|
6503
6503
|
})]
|
|
@@ -7531,6 +7531,8 @@ type TypescriptEslintSwitchExhaustivenessCheck = []|[{
|
|
|
7531
7531
|
|
|
7532
7532
|
considerDefaultExhaustiveForUnions?: boolean
|
|
7533
7533
|
|
|
7534
|
+
defaultCaseCommentPattern?: string
|
|
7535
|
+
|
|
7534
7536
|
requireDefaultForNonUnion?: boolean
|
|
7535
7537
|
}]
|
|
7536
7538
|
// ----- @typescript-eslint/triple-slash-reference -----
|
|
@@ -9630,6 +9632,9 @@ type NNoExtraneousImport = []|[{
|
|
|
9630
9632
|
replace: [string, string]
|
|
9631
9633
|
})[]])
|
|
9632
9634
|
resolvePaths?: string[]
|
|
9635
|
+
resolverConfig?: {
|
|
9636
|
+
[k: string]: unknown | undefined
|
|
9637
|
+
}
|
|
9633
9638
|
}]
|
|
9634
9639
|
// ----- n/no-extraneous-require -----
|
|
9635
9640
|
type NNoExtraneousRequire = []|[{
|
|
@@ -9651,6 +9656,9 @@ type NNoExtraneousRequire = []|[{
|
|
|
9651
9656
|
replace: [string, string]
|
|
9652
9657
|
})[]])
|
|
9653
9658
|
resolvePaths?: string[]
|
|
9659
|
+
resolverConfig?: {
|
|
9660
|
+
[k: string]: unknown | undefined
|
|
9661
|
+
}
|
|
9654
9662
|
tryExtensions?: string[]
|
|
9655
9663
|
}]
|
|
9656
9664
|
// ----- n/no-hide-core-modules -----
|
|
@@ -9663,6 +9671,9 @@ type NNoHideCoreModules = []|[{
|
|
|
9663
9671
|
type NNoMissingImport = []|[{
|
|
9664
9672
|
allowModules?: string[]
|
|
9665
9673
|
resolvePaths?: string[]
|
|
9674
|
+
resolverConfig?: {
|
|
9675
|
+
[k: string]: unknown | undefined
|
|
9676
|
+
}
|
|
9666
9677
|
tryExtensions?: string[]
|
|
9667
9678
|
ignoreTypeImport?: boolean
|
|
9668
9679
|
tsconfigPath?: string
|
|
@@ -9673,6 +9684,9 @@ type NNoMissingRequire = []|[{
|
|
|
9673
9684
|
allowModules?: string[]
|
|
9674
9685
|
tryExtensions?: string[]
|
|
9675
9686
|
resolvePaths?: string[]
|
|
9687
|
+
resolverConfig?: {
|
|
9688
|
+
[k: string]: unknown | undefined
|
|
9689
|
+
}
|
|
9676
9690
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
|
|
9677
9691
|
tsconfigPath?: string
|
|
9678
9692
|
}]
|
|
@@ -9740,6 +9754,9 @@ type NNoUnpublishedImport = []|[{
|
|
|
9740
9754
|
replace: [string, string]
|
|
9741
9755
|
})[]])
|
|
9742
9756
|
resolvePaths?: string[]
|
|
9757
|
+
resolverConfig?: {
|
|
9758
|
+
[k: string]: unknown | undefined
|
|
9759
|
+
}
|
|
9743
9760
|
ignoreTypeImport?: boolean
|
|
9744
9761
|
ignorePrivate?: boolean
|
|
9745
9762
|
}]
|
|
@@ -9763,6 +9780,9 @@ type NNoUnpublishedRequire = []|[{
|
|
|
9763
9780
|
replace: [string, string]
|
|
9764
9781
|
})[]])
|
|
9765
9782
|
resolvePaths?: string[]
|
|
9783
|
+
resolverConfig?: {
|
|
9784
|
+
[k: string]: unknown | undefined
|
|
9785
|
+
}
|
|
9766
9786
|
tryExtensions?: string[]
|
|
9767
9787
|
ignorePrivate?: boolean
|
|
9768
9788
|
}]
|
|
@@ -9780,7 +9800,7 @@ type NNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
9780
9800
|
type NNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
9781
9801
|
version?: string
|
|
9782
9802
|
allowExperimental?: boolean
|
|
9783
|
-
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
|
|
9803
|
+
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
|
|
9784
9804
|
}]
|
|
9785
9805
|
// ----- n/prefer-global/buffer -----
|
|
9786
9806
|
type NPreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -10299,30 +10319,75 @@ type PaddingLineBetweenStatements = {
|
|
|
10299
10319
|
next: _PaddingLineBetweenStatementsStatementType
|
|
10300
10320
|
}[]
|
|
10301
10321
|
// ----- perfectionist/sort-array-includes -----
|
|
10302
|
-
type PerfectionistSortArrayIncludes =
|
|
10322
|
+
type PerfectionistSortArrayIncludes = {
|
|
10303
10323
|
|
|
10304
|
-
partitionByComment?: (string[] | boolean | string
|
|
10324
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10325
|
+
block?: (string[] | boolean | string)
|
|
10326
|
+
line?: (string[] | boolean | string)
|
|
10327
|
+
[k: string]: unknown | undefined
|
|
10328
|
+
})
|
|
10305
10329
|
|
|
10306
10330
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10307
10331
|
|
|
10332
|
+
customGroups?: ({
|
|
10333
|
+
|
|
10334
|
+
groupName?: string
|
|
10335
|
+
|
|
10336
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10337
|
+
|
|
10338
|
+
order?: ("desc" | "asc")
|
|
10339
|
+
|
|
10340
|
+
newlinesInside?: ("always" | "never")
|
|
10341
|
+
anyOf?: {
|
|
10342
|
+
|
|
10343
|
+
selector?: ("literal" | "spread")
|
|
10344
|
+
|
|
10345
|
+
elementNamePattern?: string
|
|
10346
|
+
}[]
|
|
10347
|
+
} | {
|
|
10348
|
+
|
|
10349
|
+
groupName?: string
|
|
10350
|
+
|
|
10351
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10352
|
+
|
|
10353
|
+
order?: ("desc" | "asc")
|
|
10354
|
+
|
|
10355
|
+
newlinesInside?: ("always" | "never")
|
|
10356
|
+
|
|
10357
|
+
selector?: ("literal" | "spread")
|
|
10358
|
+
|
|
10359
|
+
elementNamePattern?: string
|
|
10360
|
+
})[]
|
|
10361
|
+
useConfigurationIf?: {
|
|
10362
|
+
allNamesMatchPattern?: string
|
|
10363
|
+
}
|
|
10364
|
+
|
|
10365
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10366
|
+
|
|
10308
10367
|
partitionByNewLine?: boolean
|
|
10309
10368
|
|
|
10310
10369
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10311
10370
|
|
|
10312
10371
|
ignoreCase?: boolean
|
|
10313
10372
|
|
|
10373
|
+
alphabet?: string
|
|
10374
|
+
|
|
10314
10375
|
locales?: (string | string[])
|
|
10315
10376
|
|
|
10316
|
-
|
|
10377
|
+
groups?: (string | string[])[]
|
|
10317
10378
|
|
|
10318
|
-
|
|
10319
|
-
}]
|
|
10379
|
+
order?: ("asc" | "desc")
|
|
10380
|
+
}[]
|
|
10320
10381
|
// ----- perfectionist/sort-classes -----
|
|
10321
10382
|
type PerfectionistSortClasses = []|[{
|
|
10322
10383
|
|
|
10323
10384
|
ignoreCallbackDependenciesPatterns?: string[]
|
|
10324
10385
|
|
|
10325
|
-
partitionByComment?: (string[] | boolean | string
|
|
10386
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10387
|
+
block?: (string[] | boolean | string)
|
|
10388
|
+
line?: (string[] | boolean | string)
|
|
10389
|
+
[k: string]: unknown | undefined
|
|
10390
|
+
})
|
|
10326
10391
|
|
|
10327
10392
|
customGroups?: ({
|
|
10328
10393
|
|
|
@@ -10331,6 +10396,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
10331
10396
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10332
10397
|
|
|
10333
10398
|
order?: ("desc" | "asc")
|
|
10399
|
+
|
|
10400
|
+
newlinesInside?: ("always" | "never")
|
|
10334
10401
|
anyOf?: {
|
|
10335
10402
|
|
|
10336
10403
|
elementValuePattern?: string
|
|
@@ -10351,6 +10418,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
10351
10418
|
|
|
10352
10419
|
order?: ("desc" | "asc")
|
|
10353
10420
|
|
|
10421
|
+
newlinesInside?: ("always" | "never")
|
|
10422
|
+
|
|
10354
10423
|
elementValuePattern?: string
|
|
10355
10424
|
|
|
10356
10425
|
decoratorNamePattern?: string
|
|
@@ -10370,18 +10439,24 @@ type PerfectionistSortClasses = []|[{
|
|
|
10370
10439
|
|
|
10371
10440
|
ignoreCase?: boolean
|
|
10372
10441
|
|
|
10442
|
+
alphabet?: string
|
|
10443
|
+
|
|
10444
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10445
|
+
|
|
10373
10446
|
locales?: (string | string[])
|
|
10374
10447
|
|
|
10375
10448
|
groups?: (string | string[])[]
|
|
10376
10449
|
|
|
10377
10450
|
order?: ("asc" | "desc")
|
|
10378
|
-
|
|
10379
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10380
10451
|
}]
|
|
10381
10452
|
// ----- perfectionist/sort-decorators -----
|
|
10382
10453
|
type PerfectionistSortDecorators = []|[{
|
|
10383
10454
|
|
|
10384
|
-
partitionByComment?: (string[] | boolean | string
|
|
10455
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10456
|
+
block?: (string[] | boolean | string)
|
|
10457
|
+
line?: (string[] | boolean | string)
|
|
10458
|
+
[k: string]: unknown | undefined
|
|
10459
|
+
})
|
|
10385
10460
|
|
|
10386
10461
|
sortOnParameters?: boolean
|
|
10387
10462
|
|
|
@@ -10401,18 +10476,24 @@ type PerfectionistSortDecorators = []|[{
|
|
|
10401
10476
|
|
|
10402
10477
|
ignoreCase?: boolean
|
|
10403
10478
|
|
|
10479
|
+
alphabet?: string
|
|
10480
|
+
|
|
10481
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10482
|
+
|
|
10404
10483
|
locales?: (string | string[])
|
|
10405
10484
|
|
|
10406
10485
|
groups?: (string | string[])[]
|
|
10407
10486
|
|
|
10408
10487
|
order?: ("asc" | "desc")
|
|
10409
|
-
|
|
10410
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10411
10488
|
}]
|
|
10412
10489
|
// ----- perfectionist/sort-enums -----
|
|
10413
10490
|
type PerfectionistSortEnums = []|[{
|
|
10414
10491
|
|
|
10415
|
-
partitionByComment?: (string[] | boolean | string
|
|
10492
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10493
|
+
block?: (string[] | boolean | string)
|
|
10494
|
+
line?: (string[] | boolean | string)
|
|
10495
|
+
[k: string]: unknown | undefined
|
|
10496
|
+
})
|
|
10416
10497
|
|
|
10417
10498
|
forceNumericSort?: boolean
|
|
10418
10499
|
|
|
@@ -10424,16 +10505,22 @@ type PerfectionistSortEnums = []|[{
|
|
|
10424
10505
|
|
|
10425
10506
|
ignoreCase?: boolean
|
|
10426
10507
|
|
|
10508
|
+
alphabet?: string
|
|
10509
|
+
|
|
10510
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10511
|
+
|
|
10427
10512
|
locales?: (string | string[])
|
|
10428
10513
|
|
|
10429
10514
|
order?: ("asc" | "desc")
|
|
10430
|
-
|
|
10431
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10432
10515
|
}]
|
|
10433
10516
|
// ----- perfectionist/sort-exports -----
|
|
10434
10517
|
type PerfectionistSortExports = []|[{
|
|
10435
10518
|
|
|
10436
|
-
partitionByComment?: (string[] | boolean | string
|
|
10519
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10520
|
+
block?: (string[] | boolean | string)
|
|
10521
|
+
line?: (string[] | boolean | string)
|
|
10522
|
+
[k: string]: unknown | undefined
|
|
10523
|
+
})
|
|
10437
10524
|
|
|
10438
10525
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10439
10526
|
|
|
@@ -10443,11 +10530,13 @@ type PerfectionistSortExports = []|[{
|
|
|
10443
10530
|
|
|
10444
10531
|
ignoreCase?: boolean
|
|
10445
10532
|
|
|
10533
|
+
alphabet?: string
|
|
10534
|
+
|
|
10535
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10536
|
+
|
|
10446
10537
|
locales?: (string | string[])
|
|
10447
10538
|
|
|
10448
10539
|
order?: ("asc" | "desc")
|
|
10449
|
-
|
|
10450
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10451
10540
|
}]
|
|
10452
10541
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
10453
10542
|
type PerfectionistSortHeritageClauses = []|[{
|
|
@@ -10460,13 +10549,15 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
10460
10549
|
|
|
10461
10550
|
ignoreCase?: boolean
|
|
10462
10551
|
|
|
10552
|
+
alphabet?: string
|
|
10553
|
+
|
|
10554
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10555
|
+
|
|
10463
10556
|
locales?: (string | string[])
|
|
10464
10557
|
|
|
10465
10558
|
groups?: (string | string[])[]
|
|
10466
10559
|
|
|
10467
10560
|
order?: ("asc" | "desc")
|
|
10468
|
-
|
|
10469
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10470
10561
|
}]
|
|
10471
10562
|
// ----- perfectionist/sort-imports -----
|
|
10472
10563
|
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
@@ -10483,7 +10574,11 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
10483
10574
|
}
|
|
10484
10575
|
}
|
|
10485
10576
|
|
|
10486
|
-
partitionByComment?: (string[] | boolean | string
|
|
10577
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10578
|
+
block?: (string[] | boolean | string)
|
|
10579
|
+
line?: (string[] | boolean | string)
|
|
10580
|
+
[k: string]: unknown | undefined
|
|
10581
|
+
})
|
|
10487
10582
|
|
|
10488
10583
|
internalPattern?: string[]
|
|
10489
10584
|
|
|
@@ -10503,13 +10598,15 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
10503
10598
|
|
|
10504
10599
|
ignoreCase?: boolean
|
|
10505
10600
|
|
|
10601
|
+
alphabet?: string
|
|
10602
|
+
|
|
10603
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10604
|
+
|
|
10506
10605
|
locales?: (string | string[])
|
|
10507
10606
|
|
|
10508
10607
|
groups?: (string | string[])[]
|
|
10509
10608
|
|
|
10510
10609
|
order?: ("asc" | "desc")
|
|
10511
|
-
|
|
10512
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10513
10610
|
})
|
|
10514
10611
|
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
|
|
10515
10612
|
[k: string]: unknown | undefined
|
|
@@ -10519,11 +10616,19 @@ interface _PerfectionistSortImports_IsLineLength {
|
|
|
10519
10616
|
[k: string]: unknown | undefined
|
|
10520
10617
|
}
|
|
10521
10618
|
// ----- perfectionist/sort-interfaces -----
|
|
10522
|
-
type PerfectionistSortInterfaces =
|
|
10619
|
+
type PerfectionistSortInterfaces = {
|
|
10523
10620
|
|
|
10524
10621
|
ignorePattern?: string[]
|
|
10622
|
+
useConfigurationIf?: {
|
|
10623
|
+
allNamesMatchPattern?: string
|
|
10624
|
+
declarationMatchesPattern?: string
|
|
10625
|
+
}
|
|
10525
10626
|
|
|
10526
|
-
partitionByComment?: (string[] | boolean | string
|
|
10627
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10628
|
+
block?: (string[] | boolean | string)
|
|
10629
|
+
line?: (string[] | boolean | string)
|
|
10630
|
+
[k: string]: unknown | undefined
|
|
10631
|
+
})
|
|
10527
10632
|
customGroups?: ({
|
|
10528
10633
|
[k: string]: (string | string[]) | undefined
|
|
10529
10634
|
} | ({
|
|
@@ -10533,6 +10638,8 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
10533
10638
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10534
10639
|
|
|
10535
10640
|
order?: ("desc" | "asc")
|
|
10641
|
+
|
|
10642
|
+
newlinesInside?: ("always" | "never")
|
|
10536
10643
|
anyOf?: {
|
|
10537
10644
|
|
|
10538
10645
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
@@ -10549,6 +10656,8 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
10549
10656
|
|
|
10550
10657
|
order?: ("desc" | "asc")
|
|
10551
10658
|
|
|
10659
|
+
newlinesInside?: ("always" | "never")
|
|
10660
|
+
|
|
10552
10661
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
10553
10662
|
|
|
10554
10663
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
@@ -10558,6 +10667,8 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
10558
10667
|
|
|
10559
10668
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
10560
10669
|
|
|
10670
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10671
|
+
|
|
10561
10672
|
partitionByNewLine?: boolean
|
|
10562
10673
|
|
|
10563
10674
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10566,18 +10677,22 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
10566
10677
|
|
|
10567
10678
|
ignoreCase?: boolean
|
|
10568
10679
|
|
|
10680
|
+
alphabet?: string
|
|
10681
|
+
|
|
10569
10682
|
locales?: (string | string[])
|
|
10570
10683
|
|
|
10571
10684
|
groups?: (string | string[])[]
|
|
10572
10685
|
|
|
10573
10686
|
order?: ("asc" | "desc")
|
|
10574
|
-
|
|
10575
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10576
|
-
}]
|
|
10687
|
+
}[]
|
|
10577
10688
|
// ----- perfectionist/sort-intersection-types -----
|
|
10578
10689
|
type PerfectionistSortIntersectionTypes = []|[{
|
|
10579
10690
|
|
|
10580
|
-
partitionByComment?: (string[] | boolean | string
|
|
10691
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10692
|
+
block?: (string[] | boolean | string)
|
|
10693
|
+
line?: (string[] | boolean | string)
|
|
10694
|
+
[k: string]: unknown | undefined
|
|
10695
|
+
})
|
|
10581
10696
|
|
|
10582
10697
|
partitionByNewLine?: boolean
|
|
10583
10698
|
|
|
@@ -10587,13 +10702,15 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
10587
10702
|
|
|
10588
10703
|
ignoreCase?: boolean
|
|
10589
10704
|
|
|
10705
|
+
alphabet?: string
|
|
10706
|
+
|
|
10707
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10708
|
+
|
|
10590
10709
|
locales?: (string | string[])
|
|
10591
10710
|
|
|
10592
10711
|
groups?: (string | string[])[]
|
|
10593
10712
|
|
|
10594
10713
|
order?: ("asc" | "desc")
|
|
10595
|
-
|
|
10596
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10597
10714
|
}]
|
|
10598
10715
|
// ----- perfectionist/sort-jsx-props -----
|
|
10599
10716
|
type PerfectionistSortJsxProps = []|[{
|
|
@@ -10608,18 +10725,24 @@ type PerfectionistSortJsxProps = []|[{
|
|
|
10608
10725
|
|
|
10609
10726
|
ignoreCase?: boolean
|
|
10610
10727
|
|
|
10728
|
+
alphabet?: string
|
|
10729
|
+
|
|
10730
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10731
|
+
|
|
10611
10732
|
locales?: (string | string[])
|
|
10612
10733
|
|
|
10613
10734
|
groups?: (string | string[])[]
|
|
10614
10735
|
|
|
10615
10736
|
order?: ("asc" | "desc")
|
|
10616
|
-
|
|
10617
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10618
10737
|
}]
|
|
10619
10738
|
// ----- perfectionist/sort-maps -----
|
|
10620
10739
|
type PerfectionistSortMaps = []|[{
|
|
10621
10740
|
|
|
10622
|
-
partitionByComment?: (string[] | boolean | string
|
|
10741
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10742
|
+
block?: (string[] | boolean | string)
|
|
10743
|
+
line?: (string[] | boolean | string)
|
|
10744
|
+
[k: string]: unknown | undefined
|
|
10745
|
+
})
|
|
10623
10746
|
|
|
10624
10747
|
partitionByNewLine?: boolean
|
|
10625
10748
|
|
|
@@ -10627,16 +10750,22 @@ type PerfectionistSortMaps = []|[{
|
|
|
10627
10750
|
|
|
10628
10751
|
ignoreCase?: boolean
|
|
10629
10752
|
|
|
10753
|
+
alphabet?: string
|
|
10754
|
+
|
|
10755
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10756
|
+
|
|
10630
10757
|
locales?: (string | string[])
|
|
10631
10758
|
|
|
10632
10759
|
order?: ("asc" | "desc")
|
|
10633
|
-
|
|
10634
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10635
10760
|
}]
|
|
10636
10761
|
// ----- perfectionist/sort-modules -----
|
|
10637
10762
|
type PerfectionistSortModules = []|[{
|
|
10638
10763
|
|
|
10639
|
-
partitionByComment?: (string[] | boolean | string
|
|
10764
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10765
|
+
block?: (string[] | boolean | string)
|
|
10766
|
+
line?: (string[] | boolean | string)
|
|
10767
|
+
[k: string]: unknown | undefined
|
|
10768
|
+
})
|
|
10640
10769
|
|
|
10641
10770
|
customGroups?: ({
|
|
10642
10771
|
|
|
@@ -10645,6 +10774,8 @@ type PerfectionistSortModules = []|[{
|
|
|
10645
10774
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10646
10775
|
|
|
10647
10776
|
order?: ("desc" | "asc")
|
|
10777
|
+
|
|
10778
|
+
newlinesInside?: ("always" | "never")
|
|
10648
10779
|
anyOf?: {
|
|
10649
10780
|
|
|
10650
10781
|
decoratorNamePattern?: string
|
|
@@ -10663,6 +10794,8 @@ type PerfectionistSortModules = []|[{
|
|
|
10663
10794
|
|
|
10664
10795
|
order?: ("desc" | "asc")
|
|
10665
10796
|
|
|
10797
|
+
newlinesInside?: ("always" | "never")
|
|
10798
|
+
|
|
10666
10799
|
decoratorNamePattern?: string
|
|
10667
10800
|
|
|
10668
10801
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
@@ -10680,18 +10813,24 @@ type PerfectionistSortModules = []|[{
|
|
|
10680
10813
|
|
|
10681
10814
|
ignoreCase?: boolean
|
|
10682
10815
|
|
|
10816
|
+
alphabet?: string
|
|
10817
|
+
|
|
10818
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10819
|
+
|
|
10683
10820
|
locales?: (string | string[])
|
|
10684
10821
|
|
|
10685
10822
|
groups?: (string | string[])[]
|
|
10686
10823
|
|
|
10687
10824
|
order?: ("asc" | "desc")
|
|
10688
|
-
|
|
10689
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10690
10825
|
}]
|
|
10691
10826
|
// ----- perfectionist/sort-named-exports -----
|
|
10692
10827
|
type PerfectionistSortNamedExports = []|[{
|
|
10693
10828
|
|
|
10694
|
-
partitionByComment?: (string[] | boolean | string
|
|
10829
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10830
|
+
block?: (string[] | boolean | string)
|
|
10831
|
+
line?: (string[] | boolean | string)
|
|
10832
|
+
[k: string]: unknown | undefined
|
|
10833
|
+
})
|
|
10695
10834
|
|
|
10696
10835
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10697
10836
|
|
|
@@ -10701,16 +10840,22 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
10701
10840
|
|
|
10702
10841
|
ignoreCase?: boolean
|
|
10703
10842
|
|
|
10843
|
+
alphabet?: string
|
|
10844
|
+
|
|
10845
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10846
|
+
|
|
10704
10847
|
locales?: (string | string[])
|
|
10705
10848
|
|
|
10706
10849
|
order?: ("asc" | "desc")
|
|
10707
|
-
|
|
10708
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10709
10850
|
}]
|
|
10710
10851
|
// ----- perfectionist/sort-named-imports -----
|
|
10711
10852
|
type PerfectionistSortNamedImports = []|[{
|
|
10712
10853
|
|
|
10713
|
-
partitionByComment?: (string[] | boolean | string
|
|
10854
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10855
|
+
block?: (string[] | boolean | string)
|
|
10856
|
+
line?: (string[] | boolean | string)
|
|
10857
|
+
[k: string]: unknown | undefined
|
|
10858
|
+
})
|
|
10714
10859
|
|
|
10715
10860
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10716
10861
|
|
|
@@ -10722,18 +10867,28 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
10722
10867
|
|
|
10723
10868
|
ignoreCase?: boolean
|
|
10724
10869
|
|
|
10870
|
+
alphabet?: string
|
|
10871
|
+
|
|
10872
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10873
|
+
|
|
10725
10874
|
locales?: (string | string[])
|
|
10726
10875
|
|
|
10727
10876
|
order?: ("asc" | "desc")
|
|
10728
|
-
|
|
10729
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10730
10877
|
}]
|
|
10731
10878
|
// ----- perfectionist/sort-object-types -----
|
|
10732
|
-
type PerfectionistSortObjectTypes =
|
|
10879
|
+
type PerfectionistSortObjectTypes = {
|
|
10733
10880
|
|
|
10734
10881
|
ignorePattern?: string[]
|
|
10882
|
+
useConfigurationIf?: {
|
|
10883
|
+
allNamesMatchPattern?: string
|
|
10884
|
+
declarationMatchesPattern?: string
|
|
10885
|
+
}
|
|
10735
10886
|
|
|
10736
|
-
partitionByComment?: (string[] | boolean | string
|
|
10887
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10888
|
+
block?: (string[] | boolean | string)
|
|
10889
|
+
line?: (string[] | boolean | string)
|
|
10890
|
+
[k: string]: unknown | undefined
|
|
10891
|
+
})
|
|
10737
10892
|
customGroups?: ({
|
|
10738
10893
|
[k: string]: (string | string[]) | undefined
|
|
10739
10894
|
} | ({
|
|
@@ -10743,6 +10898,8 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
10743
10898
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10744
10899
|
|
|
10745
10900
|
order?: ("desc" | "asc")
|
|
10901
|
+
|
|
10902
|
+
newlinesInside?: ("always" | "never")
|
|
10746
10903
|
anyOf?: {
|
|
10747
10904
|
|
|
10748
10905
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
@@ -10759,6 +10916,8 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
10759
10916
|
|
|
10760
10917
|
order?: ("desc" | "asc")
|
|
10761
10918
|
|
|
10919
|
+
newlinesInside?: ("always" | "never")
|
|
10920
|
+
|
|
10762
10921
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
10763
10922
|
|
|
10764
10923
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
@@ -10768,6 +10927,8 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
10768
10927
|
|
|
10769
10928
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
10770
10929
|
|
|
10930
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10931
|
+
|
|
10771
10932
|
partitionByNewLine?: boolean
|
|
10772
10933
|
|
|
10773
10934
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10776,16 +10937,16 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
10776
10937
|
|
|
10777
10938
|
ignoreCase?: boolean
|
|
10778
10939
|
|
|
10940
|
+
alphabet?: string
|
|
10941
|
+
|
|
10779
10942
|
locales?: (string | string[])
|
|
10780
10943
|
|
|
10781
10944
|
groups?: (string | string[])[]
|
|
10782
10945
|
|
|
10783
10946
|
order?: ("asc" | "desc")
|
|
10784
|
-
|
|
10785
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10786
|
-
}]
|
|
10947
|
+
}[]
|
|
10787
10948
|
// ----- perfectionist/sort-objects -----
|
|
10788
|
-
type PerfectionistSortObjects =
|
|
10949
|
+
type PerfectionistSortObjects = {
|
|
10789
10950
|
|
|
10790
10951
|
destructuredObjects?: (boolean | {
|
|
10791
10952
|
|
|
@@ -10793,8 +10954,16 @@ type PerfectionistSortObjects = []|[{
|
|
|
10793
10954
|
})
|
|
10794
10955
|
|
|
10795
10956
|
ignorePattern?: string[]
|
|
10957
|
+
useConfigurationIf?: {
|
|
10958
|
+
allNamesMatchPattern?: string
|
|
10959
|
+
callingFunctionNamePattern?: string
|
|
10960
|
+
}
|
|
10796
10961
|
|
|
10797
|
-
partitionByComment?: (string[] | boolean | string
|
|
10962
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
10963
|
+
block?: (string[] | boolean | string)
|
|
10964
|
+
line?: (string[] | boolean | string)
|
|
10965
|
+
[k: string]: unknown | undefined
|
|
10966
|
+
})
|
|
10798
10967
|
|
|
10799
10968
|
destructureOnly?: boolean
|
|
10800
10969
|
|
|
@@ -10802,6 +10971,8 @@ type PerfectionistSortObjects = []|[{
|
|
|
10802
10971
|
|
|
10803
10972
|
styledComponents?: boolean
|
|
10804
10973
|
|
|
10974
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10975
|
+
|
|
10805
10976
|
partitionByNewLine?: boolean
|
|
10806
10977
|
|
|
10807
10978
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
@@ -10814,33 +10985,74 @@ type PerfectionistSortObjects = []|[{
|
|
|
10814
10985
|
|
|
10815
10986
|
ignoreCase?: boolean
|
|
10816
10987
|
|
|
10988
|
+
alphabet?: string
|
|
10989
|
+
|
|
10817
10990
|
locales?: (string | string[])
|
|
10818
10991
|
|
|
10819
10992
|
groups?: (string | string[])[]
|
|
10820
10993
|
|
|
10821
10994
|
order?: ("asc" | "desc")
|
|
10822
|
-
|
|
10823
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10824
|
-
}]
|
|
10995
|
+
}[]
|
|
10825
10996
|
// ----- perfectionist/sort-sets -----
|
|
10826
|
-
type PerfectionistSortSets =
|
|
10997
|
+
type PerfectionistSortSets = {
|
|
10827
10998
|
|
|
10828
|
-
partitionByComment?: (string[] | boolean | string
|
|
10999
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
11000
|
+
block?: (string[] | boolean | string)
|
|
11001
|
+
line?: (string[] | boolean | string)
|
|
11002
|
+
[k: string]: unknown | undefined
|
|
11003
|
+
})
|
|
10829
11004
|
|
|
10830
11005
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10831
11006
|
|
|
11007
|
+
customGroups?: ({
|
|
11008
|
+
|
|
11009
|
+
groupName?: string
|
|
11010
|
+
|
|
11011
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
11012
|
+
|
|
11013
|
+
order?: ("desc" | "asc")
|
|
11014
|
+
|
|
11015
|
+
newlinesInside?: ("always" | "never")
|
|
11016
|
+
anyOf?: {
|
|
11017
|
+
|
|
11018
|
+
selector?: ("literal" | "spread")
|
|
11019
|
+
|
|
11020
|
+
elementNamePattern?: string
|
|
11021
|
+
}[]
|
|
11022
|
+
} | {
|
|
11023
|
+
|
|
11024
|
+
groupName?: string
|
|
11025
|
+
|
|
11026
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
11027
|
+
|
|
11028
|
+
order?: ("desc" | "asc")
|
|
11029
|
+
|
|
11030
|
+
newlinesInside?: ("always" | "never")
|
|
11031
|
+
|
|
11032
|
+
selector?: ("literal" | "spread")
|
|
11033
|
+
|
|
11034
|
+
elementNamePattern?: string
|
|
11035
|
+
})[]
|
|
11036
|
+
useConfigurationIf?: {
|
|
11037
|
+
allNamesMatchPattern?: string
|
|
11038
|
+
}
|
|
11039
|
+
|
|
11040
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11041
|
+
|
|
10832
11042
|
partitionByNewLine?: boolean
|
|
10833
11043
|
|
|
10834
11044
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10835
11045
|
|
|
10836
11046
|
ignoreCase?: boolean
|
|
10837
11047
|
|
|
11048
|
+
alphabet?: string
|
|
11049
|
+
|
|
10838
11050
|
locales?: (string | string[])
|
|
10839
11051
|
|
|
10840
|
-
|
|
11052
|
+
groups?: (string | string[])[]
|
|
10841
11053
|
|
|
10842
|
-
|
|
10843
|
-
}]
|
|
11054
|
+
order?: ("asc" | "desc")
|
|
11055
|
+
}[]
|
|
10844
11056
|
// ----- perfectionist/sort-switch-case -----
|
|
10845
11057
|
type PerfectionistSortSwitchCase = []|[{
|
|
10846
11058
|
|
|
@@ -10848,16 +11060,22 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
10848
11060
|
|
|
10849
11061
|
ignoreCase?: boolean
|
|
10850
11062
|
|
|
11063
|
+
alphabet?: string
|
|
11064
|
+
|
|
11065
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
11066
|
+
|
|
10851
11067
|
locales?: (string | string[])
|
|
10852
11068
|
|
|
10853
11069
|
order?: ("asc" | "desc")
|
|
10854
|
-
|
|
10855
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10856
11070
|
}]
|
|
10857
11071
|
// ----- perfectionist/sort-union-types -----
|
|
10858
11072
|
type PerfectionistSortUnionTypes = []|[{
|
|
10859
11073
|
|
|
10860
|
-
partitionByComment?: (string[] | boolean | string
|
|
11074
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
11075
|
+
block?: (string[] | boolean | string)
|
|
11076
|
+
line?: (string[] | boolean | string)
|
|
11077
|
+
[k: string]: unknown | undefined
|
|
11078
|
+
})
|
|
10861
11079
|
|
|
10862
11080
|
partitionByNewLine?: boolean
|
|
10863
11081
|
|
|
@@ -10867,18 +11085,24 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
10867
11085
|
|
|
10868
11086
|
ignoreCase?: boolean
|
|
10869
11087
|
|
|
11088
|
+
alphabet?: string
|
|
11089
|
+
|
|
11090
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
11091
|
+
|
|
10870
11092
|
locales?: (string | string[])
|
|
10871
11093
|
|
|
10872
11094
|
groups?: (string | string[])[]
|
|
10873
11095
|
|
|
10874
11096
|
order?: ("asc" | "desc")
|
|
10875
|
-
|
|
10876
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10877
11097
|
}]
|
|
10878
11098
|
// ----- perfectionist/sort-variable-declarations -----
|
|
10879
11099
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
10880
11100
|
|
|
10881
|
-
partitionByComment?: (string[] | boolean | string
|
|
11101
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
11102
|
+
block?: (string[] | boolean | string)
|
|
11103
|
+
line?: (string[] | boolean | string)
|
|
11104
|
+
[k: string]: unknown | undefined
|
|
11105
|
+
})
|
|
10882
11106
|
|
|
10883
11107
|
partitionByNewLine?: boolean
|
|
10884
11108
|
|
|
@@ -10886,11 +11110,13 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
10886
11110
|
|
|
10887
11111
|
ignoreCase?: boolean
|
|
10888
11112
|
|
|
11113
|
+
alphabet?: string
|
|
11114
|
+
|
|
11115
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
11116
|
+
|
|
10889
11117
|
locales?: (string | string[])
|
|
10890
11118
|
|
|
10891
11119
|
order?: ("asc" | "desc")
|
|
10892
|
-
|
|
10893
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10894
11120
|
}]
|
|
10895
11121
|
// ----- playwright/expect-expect -----
|
|
10896
11122
|
type PlaywrightExpectExpect = []|[{
|
|
@@ -12051,8 +12277,7 @@ type VitestNoRestrictedViMethods = []|[{
|
|
|
12051
12277
|
}]
|
|
12052
12278
|
// ----- vitest/no-standalone-expect -----
|
|
12053
12279
|
type VitestNoStandaloneExpect = []|[{
|
|
12054
|
-
|
|
12055
|
-
[k: string]: unknown | undefined
|
|
12280
|
+
additionalTestBlockFunctions?: string[]
|
|
12056
12281
|
}]
|
|
12057
12282
|
// ----- vitest/prefer-expect-assertions -----
|
|
12058
12283
|
type VitestPreferExpectAssertions = []|[{
|
|
@@ -14142,27 +14367,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14142
14367
|
'forbid-elements': eslint.Rule.RuleModule;
|
|
14143
14368
|
'forbid-foreign-prop-types': eslint.Rule.RuleModule;
|
|
14144
14369
|
'forbid-prop-types': eslint.Rule.RuleModule;
|
|
14145
|
-
'forward-ref-uses-ref':
|
|
14146
|
-
meta: {
|
|
14147
|
-
docs: {
|
|
14148
|
-
description: string;
|
|
14149
|
-
category: string;
|
|
14150
|
-
recommended: boolean;
|
|
14151
|
-
url: string;
|
|
14152
|
-
};
|
|
14153
|
-
messages: {
|
|
14154
|
-
missingRefParameter: string;
|
|
14155
|
-
addRefParameter: string;
|
|
14156
|
-
removeForwardRef: string;
|
|
14157
|
-
};
|
|
14158
|
-
schema: undefined[];
|
|
14159
|
-
type: string;
|
|
14160
|
-
hasSuggestions: boolean;
|
|
14161
|
-
};
|
|
14162
|
-
create(context: any): {
|
|
14163
|
-
"FunctionExpression, ArrowFunctionExpression"(node: any): void;
|
|
14164
|
-
};
|
|
14165
|
-
};
|
|
14370
|
+
'forward-ref-uses-ref': eslint.Rule.RuleModule;
|
|
14166
14371
|
'function-component-definition': eslint.Rule.RuleModule;
|
|
14167
14372
|
'hook-use-state': eslint.Rule.RuleModule;
|
|
14168
14373
|
'iframe-missing-sandbox': eslint.Rule.RuleModule;
|
|
@@ -14187,23 +14392,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14187
14392
|
'jsx-no-constructed-context-values': eslint.Rule.RuleModule;
|
|
14188
14393
|
'jsx-no-duplicate-props': eslint.Rule.RuleModule;
|
|
14189
14394
|
'jsx-no-leaked-render': eslint.Rule.RuleModule;
|
|
14190
|
-
'jsx-no-literals':
|
|
14191
|
-
meta: eslint.Rule.RuleMetaData;
|
|
14192
|
-
create(context: any): (false & {
|
|
14193
|
-
Literal(node: any): void;
|
|
14194
|
-
JSXAttribute(node: any): void;
|
|
14195
|
-
JSXText(node: any): void;
|
|
14196
|
-
TemplateLiteral(node: any): void;
|
|
14197
|
-
}) | ({
|
|
14198
|
-
ImportDeclaration(node: any): void;
|
|
14199
|
-
VariableDeclaration(node: any): void;
|
|
14200
|
-
} & {
|
|
14201
|
-
Literal(node: any): void;
|
|
14202
|
-
JSXAttribute(node: any): void;
|
|
14203
|
-
JSXText(node: any): void;
|
|
14204
|
-
TemplateLiteral(node: any): void;
|
|
14205
|
-
});
|
|
14206
|
-
};
|
|
14395
|
+
'jsx-no-literals': eslint.Rule.RuleModule;
|
|
14207
14396
|
'jsx-no-script-url': eslint.Rule.RuleModule;
|
|
14208
14397
|
'jsx-no-target-blank': eslint.Rule.RuleModule;
|
|
14209
14398
|
'jsx-no-useless-fragment': eslint.Rule.RuleModule;
|
|
@@ -14214,22 +14403,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14214
14403
|
'jsx-fragments': eslint.Rule.RuleModule;
|
|
14215
14404
|
'jsx-props-no-multi-spaces': eslint.Rule.RuleModule;
|
|
14216
14405
|
'jsx-props-no-spreading': eslint.Rule.RuleModule;
|
|
14217
|
-
'jsx-props-no-spread-multi':
|
|
14218
|
-
meta: {
|
|
14219
|
-
docs: {
|
|
14220
|
-
description: string;
|
|
14221
|
-
category: string;
|
|
14222
|
-
recommended: boolean;
|
|
14223
|
-
url: string;
|
|
14224
|
-
};
|
|
14225
|
-
messages: {
|
|
14226
|
-
noMultiSpreading: string;
|
|
14227
|
-
};
|
|
14228
|
-
};
|
|
14229
|
-
create(context: any): {
|
|
14230
|
-
JSXOpeningElement(node: any): void;
|
|
14231
|
-
};
|
|
14232
|
-
};
|
|
14406
|
+
'jsx-props-no-spread-multi': eslint.Rule.RuleModule;
|
|
14233
14407
|
'jsx-sort-default-props': eslint.Rule.RuleModule;
|
|
14234
14408
|
'jsx-sort-props': eslint.Rule.RuleModule;
|
|
14235
14409
|
'jsx-space-before-closing': eslint.Rule.RuleModule;
|
|
@@ -14298,27 +14472,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14298
14472
|
'forbid-elements': eslint.Rule.RuleModule;
|
|
14299
14473
|
'forbid-foreign-prop-types': eslint.Rule.RuleModule;
|
|
14300
14474
|
'forbid-prop-types': eslint.Rule.RuleModule;
|
|
14301
|
-
'forward-ref-uses-ref':
|
|
14302
|
-
meta: {
|
|
14303
|
-
docs: {
|
|
14304
|
-
description: string;
|
|
14305
|
-
category: string;
|
|
14306
|
-
recommended: boolean;
|
|
14307
|
-
url: string;
|
|
14308
|
-
};
|
|
14309
|
-
messages: {
|
|
14310
|
-
missingRefParameter: string;
|
|
14311
|
-
addRefParameter: string;
|
|
14312
|
-
removeForwardRef: string;
|
|
14313
|
-
};
|
|
14314
|
-
schema: undefined[];
|
|
14315
|
-
type: string;
|
|
14316
|
-
hasSuggestions: boolean;
|
|
14317
|
-
};
|
|
14318
|
-
create(context: any): {
|
|
14319
|
-
"FunctionExpression, ArrowFunctionExpression"(node: any): void;
|
|
14320
|
-
};
|
|
14321
|
-
};
|
|
14475
|
+
'forward-ref-uses-ref': eslint.Rule.RuleModule;
|
|
14322
14476
|
'function-component-definition': eslint.Rule.RuleModule;
|
|
14323
14477
|
'hook-use-state': eslint.Rule.RuleModule;
|
|
14324
14478
|
'iframe-missing-sandbox': eslint.Rule.RuleModule;
|
|
@@ -14343,23 +14497,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14343
14497
|
'jsx-no-constructed-context-values': eslint.Rule.RuleModule;
|
|
14344
14498
|
'jsx-no-duplicate-props': eslint.Rule.RuleModule;
|
|
14345
14499
|
'jsx-no-leaked-render': eslint.Rule.RuleModule;
|
|
14346
|
-
'jsx-no-literals':
|
|
14347
|
-
meta: eslint.Rule.RuleMetaData;
|
|
14348
|
-
create(context: any): (false & {
|
|
14349
|
-
Literal(node: any): void;
|
|
14350
|
-
JSXAttribute(node: any): void;
|
|
14351
|
-
JSXText(node: any): void;
|
|
14352
|
-
TemplateLiteral(node: any): void;
|
|
14353
|
-
}) | ({
|
|
14354
|
-
ImportDeclaration(node: any): void;
|
|
14355
|
-
VariableDeclaration(node: any): void;
|
|
14356
|
-
} & {
|
|
14357
|
-
Literal(node: any): void;
|
|
14358
|
-
JSXAttribute(node: any): void;
|
|
14359
|
-
JSXText(node: any): void;
|
|
14360
|
-
TemplateLiteral(node: any): void;
|
|
14361
|
-
});
|
|
14362
|
-
};
|
|
14500
|
+
'jsx-no-literals': eslint.Rule.RuleModule;
|
|
14363
14501
|
'jsx-no-script-url': eslint.Rule.RuleModule;
|
|
14364
14502
|
'jsx-no-target-blank': eslint.Rule.RuleModule;
|
|
14365
14503
|
'jsx-no-useless-fragment': eslint.Rule.RuleModule;
|
|
@@ -14370,22 +14508,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14370
14508
|
'jsx-fragments': eslint.Rule.RuleModule;
|
|
14371
14509
|
'jsx-props-no-multi-spaces': eslint.Rule.RuleModule;
|
|
14372
14510
|
'jsx-props-no-spreading': eslint.Rule.RuleModule;
|
|
14373
|
-
'jsx-props-no-spread-multi':
|
|
14374
|
-
meta: {
|
|
14375
|
-
docs: {
|
|
14376
|
-
description: string;
|
|
14377
|
-
category: string;
|
|
14378
|
-
recommended: boolean;
|
|
14379
|
-
url: string;
|
|
14380
|
-
};
|
|
14381
|
-
messages: {
|
|
14382
|
-
noMultiSpreading: string;
|
|
14383
|
-
};
|
|
14384
|
-
};
|
|
14385
|
-
create(context: any): {
|
|
14386
|
-
JSXOpeningElement(node: any): void;
|
|
14387
|
-
};
|
|
14388
|
-
};
|
|
14511
|
+
'jsx-props-no-spread-multi': eslint.Rule.RuleModule;
|
|
14389
14512
|
'jsx-sort-default-props': eslint.Rule.RuleModule;
|
|
14390
14513
|
'jsx-sort-props': eslint.Rule.RuleModule;
|
|
14391
14514
|
'jsx-space-before-closing': eslint.Rule.RuleModule;
|
|
@@ -14451,28 +14574,28 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14451
14574
|
};
|
|
14452
14575
|
};
|
|
14453
14576
|
rules: {
|
|
14454
|
-
"react/display-name":
|
|
14455
|
-
"react/jsx-key":
|
|
14456
|
-
"react/jsx-no-comment-textnodes":
|
|
14457
|
-
"react/jsx-no-duplicate-props":
|
|
14458
|
-
"react/jsx-no-target-blank":
|
|
14459
|
-
"react/jsx-no-undef":
|
|
14460
|
-
"react/jsx-uses-react":
|
|
14461
|
-
"react/jsx-uses-vars":
|
|
14462
|
-
"react/no-children-prop":
|
|
14463
|
-
"react/no-danger-with-children":
|
|
14464
|
-
"react/no-deprecated":
|
|
14465
|
-
"react/no-direct-mutation-state":
|
|
14466
|
-
"react/no-find-dom-node":
|
|
14467
|
-
"react/no-is-mounted":
|
|
14468
|
-
"react/no-render-return-value":
|
|
14469
|
-
"react/no-string-refs":
|
|
14470
|
-
"react/no-unescaped-entities":
|
|
14471
|
-
"react/no-unknown-property":
|
|
14472
|
-
"react/no-unsafe":
|
|
14473
|
-
"react/prop-types":
|
|
14474
|
-
"react/react-in-jsx-scope":
|
|
14475
|
-
"react/require-render-return":
|
|
14577
|
+
"react/display-name": 2;
|
|
14578
|
+
"react/jsx-key": 2;
|
|
14579
|
+
"react/jsx-no-comment-textnodes": 2;
|
|
14580
|
+
"react/jsx-no-duplicate-props": 2;
|
|
14581
|
+
"react/jsx-no-target-blank": 2;
|
|
14582
|
+
"react/jsx-no-undef": 2;
|
|
14583
|
+
"react/jsx-uses-react": 2;
|
|
14584
|
+
"react/jsx-uses-vars": 2;
|
|
14585
|
+
"react/no-children-prop": 2;
|
|
14586
|
+
"react/no-danger-with-children": 2;
|
|
14587
|
+
"react/no-deprecated": 2;
|
|
14588
|
+
"react/no-direct-mutation-state": 2;
|
|
14589
|
+
"react/no-find-dom-node": 2;
|
|
14590
|
+
"react/no-is-mounted": 2;
|
|
14591
|
+
"react/no-render-return-value": 2;
|
|
14592
|
+
"react/no-string-refs": 2;
|
|
14593
|
+
"react/no-unescaped-entities": 2;
|
|
14594
|
+
"react/no-unknown-property": 2;
|
|
14595
|
+
"react/no-unsafe": 0;
|
|
14596
|
+
"react/prop-types": 2;
|
|
14597
|
+
"react/react-in-jsx-scope": 2;
|
|
14598
|
+
"react/require-render-return": 2;
|
|
14476
14599
|
};
|
|
14477
14600
|
};
|
|
14478
14601
|
all: {
|
|
@@ -14493,8 +14616,8 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14493
14616
|
jsxPragma: any;
|
|
14494
14617
|
};
|
|
14495
14618
|
rules: {
|
|
14496
|
-
"react/react-in-jsx-scope":
|
|
14497
|
-
"react/jsx-uses-react":
|
|
14619
|
+
"react/react-in-jsx-scope": 0;
|
|
14620
|
+
"react/jsx-uses-react": 0;
|
|
14498
14621
|
};
|
|
14499
14622
|
};
|
|
14500
14623
|
} & {
|