@storm-software/eslint 0.145.13 → 0.145.14
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/README.md +1 -1
- package/dist/preset.d.ts +1 -1
- package/dist/preset.js +1 -1
- package/dist/types.d.ts +662 -292
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1444,233 +1444,233 @@ Backward pagination arguments
|
|
|
1444
1444
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
1445
1445
|
/**
|
|
1446
1446
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
1447
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1447
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/consistent-type-specifier-style.md
|
|
1448
1448
|
*/
|
|
1449
1449
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
|
|
1450
1450
|
/**
|
|
1451
1451
|
* Ensure a default export is present, given a default import.
|
|
1452
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1452
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/default.md
|
|
1453
1453
|
*/
|
|
1454
1454
|
'import/default'?: Linter.RuleEntry<[]>
|
|
1455
1455
|
/**
|
|
1456
1456
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
1457
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1457
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/dynamic-import-chunkname.md
|
|
1458
1458
|
*/
|
|
1459
1459
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
|
|
1460
1460
|
/**
|
|
1461
1461
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
1462
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1462
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/export.md
|
|
1463
1463
|
*/
|
|
1464
1464
|
'import/export'?: Linter.RuleEntry<[]>
|
|
1465
1465
|
/**
|
|
1466
1466
|
* Ensure all exports appear after other statements.
|
|
1467
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1467
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/exports-last.md
|
|
1468
1468
|
*/
|
|
1469
1469
|
'import/exports-last'?: Linter.RuleEntry<[]>
|
|
1470
1470
|
/**
|
|
1471
1471
|
* Ensure consistent use of file extension within the import path.
|
|
1472
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1472
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/extensions.md
|
|
1473
1473
|
*/
|
|
1474
1474
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>
|
|
1475
1475
|
/**
|
|
1476
1476
|
* Ensure all imports appear before other statements.
|
|
1477
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1477
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/first.md
|
|
1478
1478
|
*/
|
|
1479
1479
|
'import/first'?: Linter.RuleEntry<ImportFirst>
|
|
1480
1480
|
/**
|
|
1481
1481
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
1482
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1482
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/group-exports.md
|
|
1483
1483
|
*/
|
|
1484
1484
|
'import/group-exports'?: Linter.RuleEntry<[]>
|
|
1485
1485
|
/**
|
|
1486
1486
|
* Replaced by `import-x/first`.
|
|
1487
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1487
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/imports-first.md
|
|
1488
1488
|
* @deprecated
|
|
1489
1489
|
*/
|
|
1490
1490
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
|
|
1491
1491
|
/**
|
|
1492
1492
|
* Enforce the maximum number of dependencies a module can have.
|
|
1493
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1493
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/max-dependencies.md
|
|
1494
1494
|
*/
|
|
1495
1495
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
|
|
1496
1496
|
/**
|
|
1497
1497
|
* Ensure named imports correspond to a named export in the remote file.
|
|
1498
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1498
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/named.md
|
|
1499
1499
|
*/
|
|
1500
1500
|
'import/named'?: Linter.RuleEntry<ImportNamed>
|
|
1501
1501
|
/**
|
|
1502
1502
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
1503
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1503
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/namespace.md
|
|
1504
1504
|
*/
|
|
1505
1505
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>
|
|
1506
1506
|
/**
|
|
1507
1507
|
* Enforce a newline after import statements.
|
|
1508
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1508
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/newline-after-import.md
|
|
1509
1509
|
*/
|
|
1510
1510
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
|
|
1511
1511
|
/**
|
|
1512
1512
|
* Forbid import of modules using absolute paths.
|
|
1513
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1513
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-absolute-path.md
|
|
1514
1514
|
*/
|
|
1515
1515
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
|
|
1516
1516
|
/**
|
|
1517
1517
|
* Forbid AMD `require` and `define` calls.
|
|
1518
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1518
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-amd.md
|
|
1519
1519
|
*/
|
|
1520
1520
|
'import/no-amd'?: Linter.RuleEntry<[]>
|
|
1521
1521
|
/**
|
|
1522
1522
|
* Forbid anonymous values as default exports.
|
|
1523
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1523
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-anonymous-default-export.md
|
|
1524
1524
|
*/
|
|
1525
1525
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
|
|
1526
1526
|
/**
|
|
1527
1527
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
1528
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1528
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-commonjs.md
|
|
1529
1529
|
*/
|
|
1530
1530
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
|
|
1531
1531
|
/**
|
|
1532
1532
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
1533
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1533
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-cycle.md
|
|
1534
1534
|
*/
|
|
1535
1535
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
|
|
1536
1536
|
/**
|
|
1537
1537
|
* Forbid default exports.
|
|
1538
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1538
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-default-export.md
|
|
1539
1539
|
*/
|
|
1540
1540
|
'import/no-default-export'?: Linter.RuleEntry<[]>
|
|
1541
1541
|
/**
|
|
1542
1542
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
1543
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1543
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-deprecated.md
|
|
1544
1544
|
*/
|
|
1545
1545
|
'import/no-deprecated'?: Linter.RuleEntry<[]>
|
|
1546
1546
|
/**
|
|
1547
1547
|
* Forbid repeated import of the same module in multiple places.
|
|
1548
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1548
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-duplicates.md
|
|
1549
1549
|
*/
|
|
1550
1550
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
|
|
1551
1551
|
/**
|
|
1552
1552
|
* Forbid `require()` calls with expressions.
|
|
1553
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1553
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-dynamic-require.md
|
|
1554
1554
|
*/
|
|
1555
1555
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
|
|
1556
1556
|
/**
|
|
1557
1557
|
* Forbid empty named import blocks.
|
|
1558
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1558
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-empty-named-blocks.md
|
|
1559
1559
|
*/
|
|
1560
1560
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
1561
1561
|
/**
|
|
1562
1562
|
* Forbid the use of extraneous packages.
|
|
1563
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1563
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-extraneous-dependencies.md
|
|
1564
1564
|
*/
|
|
1565
1565
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
|
|
1566
1566
|
/**
|
|
1567
1567
|
* Forbid import statements with CommonJS module.exports.
|
|
1568
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1568
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-import-module-exports.md
|
|
1569
1569
|
*/
|
|
1570
1570
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
|
|
1571
1571
|
/**
|
|
1572
1572
|
* Forbid importing the submodules of other modules.
|
|
1573
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1573
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-internal-modules.md
|
|
1574
1574
|
*/
|
|
1575
1575
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
|
|
1576
1576
|
/**
|
|
1577
1577
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
1578
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1578
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-mutable-exports.md
|
|
1579
1579
|
*/
|
|
1580
1580
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
1581
1581
|
/**
|
|
1582
1582
|
* Forbid use of exported name as identifier of default export.
|
|
1583
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1583
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-named-as-default.md
|
|
1584
1584
|
*/
|
|
1585
1585
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
1586
1586
|
/**
|
|
1587
1587
|
* Forbid use of exported name as property of default export.
|
|
1588
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1588
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-named-as-default-member.md
|
|
1589
1589
|
*/
|
|
1590
1590
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
1591
1591
|
/**
|
|
1592
1592
|
* Forbid named default exports.
|
|
1593
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1593
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-named-default.md
|
|
1594
1594
|
*/
|
|
1595
1595
|
'import/no-named-default'?: Linter.RuleEntry<[]>
|
|
1596
1596
|
/**
|
|
1597
1597
|
* Forbid named exports.
|
|
1598
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1598
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-named-export.md
|
|
1599
1599
|
*/
|
|
1600
1600
|
'import/no-named-export'?: Linter.RuleEntry<[]>
|
|
1601
1601
|
/**
|
|
1602
1602
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
1603
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1603
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-namespace.md
|
|
1604
1604
|
*/
|
|
1605
1605
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
|
|
1606
1606
|
/**
|
|
1607
1607
|
* Forbid Node.js builtin modules.
|
|
1608
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1608
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-nodejs-modules.md
|
|
1609
1609
|
*/
|
|
1610
1610
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
|
|
1611
1611
|
/**
|
|
1612
1612
|
* Forbid importing packages through relative paths.
|
|
1613
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1613
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-relative-packages.md
|
|
1614
1614
|
*/
|
|
1615
1615
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
|
|
1616
1616
|
/**
|
|
1617
1617
|
* Forbid importing modules from parent directories.
|
|
1618
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1618
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-relative-parent-imports.md
|
|
1619
1619
|
*/
|
|
1620
1620
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
|
|
1621
1621
|
/**
|
|
1622
1622
|
* Forbid importing a default export by a different name.
|
|
1623
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1623
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-rename-default.md
|
|
1624
1624
|
*/
|
|
1625
1625
|
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
|
|
1626
1626
|
/**
|
|
1627
1627
|
* Enforce which files can be imported in a given folder.
|
|
1628
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1628
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-restricted-paths.md
|
|
1629
1629
|
*/
|
|
1630
1630
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
|
|
1631
1631
|
/**
|
|
1632
1632
|
* Forbid a module from importing itself.
|
|
1633
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1633
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-self-import.md
|
|
1634
1634
|
*/
|
|
1635
1635
|
'import/no-self-import'?: Linter.RuleEntry<[]>
|
|
1636
1636
|
/**
|
|
1637
1637
|
* Forbid unassigned imports.
|
|
1638
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1638
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-unassigned-import.md
|
|
1639
1639
|
*/
|
|
1640
1640
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
|
|
1641
1641
|
/**
|
|
1642
1642
|
* Ensure imports point to a file/module that can be resolved.
|
|
1643
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1643
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-unresolved.md
|
|
1644
1644
|
*/
|
|
1645
1645
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
|
|
1646
1646
|
/**
|
|
1647
1647
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
1648
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1648
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-unused-modules.md
|
|
1649
1649
|
*/
|
|
1650
1650
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
|
|
1651
1651
|
/**
|
|
1652
1652
|
* Forbid unnecessary path segments in import and require statements.
|
|
1653
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1653
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-useless-path-segments.md
|
|
1654
1654
|
*/
|
|
1655
1655
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
|
|
1656
1656
|
/**
|
|
1657
1657
|
* Forbid webpack loader syntax in imports.
|
|
1658
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1658
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/no-webpack-loader-syntax.md
|
|
1659
1659
|
*/
|
|
1660
1660
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
1661
1661
|
/**
|
|
1662
1662
|
* Enforce a convention in module import order.
|
|
1663
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1663
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/order.md
|
|
1664
1664
|
*/
|
|
1665
1665
|
'import/order'?: Linter.RuleEntry<ImportOrder>
|
|
1666
1666
|
/**
|
|
1667
1667
|
* Prefer a default export if module exports a single name or multiple names.
|
|
1668
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1668
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/prefer-default-export.md
|
|
1669
1669
|
*/
|
|
1670
1670
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
|
|
1671
1671
|
/**
|
|
1672
1672
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
1673
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1673
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.2/docs/rules/unambiguous.md
|
|
1674
1674
|
*/
|
|
1675
1675
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
1676
1676
|
/**
|
|
@@ -3862,122 +3862,142 @@ Backward pagination arguments
|
|
|
3862
3862
|
*/
|
|
3863
3863
|
'react-compiler/react-compiler'?: Linter.RuleEntry<ReactCompilerReactCompiler>
|
|
3864
3864
|
/**
|
|
3865
|
-
*
|
|
3865
|
+
* Disallow `children` in void DOM elements.
|
|
3866
3866
|
* @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
|
|
3867
3867
|
*/
|
|
3868
3868
|
'react-dom/no-children-in-void-dom-elements'?: Linter.RuleEntry<[]>
|
|
3869
3869
|
/**
|
|
3870
|
-
*
|
|
3870
|
+
* Disallow `dangerouslySetInnerHTML`.
|
|
3871
3871
|
* @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml
|
|
3872
3872
|
*/
|
|
3873
3873
|
'react-dom/no-dangerously-set-innerhtml'?: Linter.RuleEntry<[]>
|
|
3874
3874
|
/**
|
|
3875
|
-
*
|
|
3875
|
+
* Disallow `dangerouslySetInnerHTML` and `children` at the same time.
|
|
3876
3876
|
* @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml-with-children
|
|
3877
3877
|
*/
|
|
3878
3878
|
'react-dom/no-dangerously-set-innerhtml-with-children'?: Linter.RuleEntry<[]>
|
|
3879
3879
|
/**
|
|
3880
|
-
*
|
|
3880
|
+
* Disallow `findDOMNode`.
|
|
3881
3881
|
* @see https://eslint-react.xyz/docs/rules/dom-no-find-dom-node
|
|
3882
3882
|
*/
|
|
3883
3883
|
'react-dom/no-find-dom-node'?: Linter.RuleEntry<[]>
|
|
3884
3884
|
/**
|
|
3885
|
-
*
|
|
3885
|
+
* Disallow `flushSync`.
|
|
3886
3886
|
* @see https://eslint-react.xyz/docs/rules/dom-no-flush-sync
|
|
3887
3887
|
*/
|
|
3888
3888
|
'react-dom/no-flush-sync'?: Linter.RuleEntry<[]>
|
|
3889
3889
|
/**
|
|
3890
|
-
*
|
|
3890
|
+
* Replaces usages of `ReactDom.hydrate()` with `hydrateRoot()`.
|
|
3891
|
+
* @see https://eslint-react.xyz/docs/rules/dom-no-hydrate
|
|
3892
|
+
*/
|
|
3893
|
+
'react-dom/no-hydrate'?: Linter.RuleEntry<[]>
|
|
3894
|
+
/**
|
|
3895
|
+
* Enforces explicit `type` attribute for `button` elements.
|
|
3891
3896
|
* @see https://eslint-react.xyz/docs/rules/dom-no-missing-button-type
|
|
3892
3897
|
*/
|
|
3893
3898
|
'react-dom/no-missing-button-type'?: Linter.RuleEntry<[]>
|
|
3894
3899
|
/**
|
|
3895
|
-
*
|
|
3900
|
+
* Enforces explicit `sandbox` attribute for `iframe` elements.
|
|
3896
3901
|
* @see https://eslint-react.xyz/docs/rules/dom-no-missing-iframe-sandbox
|
|
3897
3902
|
*/
|
|
3898
3903
|
'react-dom/no-missing-iframe-sandbox'?: Linter.RuleEntry<[]>
|
|
3899
3904
|
/**
|
|
3900
|
-
*
|
|
3905
|
+
* Enforces the absence of a `namespace` in React elements.
|
|
3901
3906
|
* @see https://eslint-react.xyz/docs/rules/dom-no-namespace
|
|
3902
3907
|
*/
|
|
3903
3908
|
'react-dom/no-namespace'?: Linter.RuleEntry<[]>
|
|
3904
3909
|
/**
|
|
3905
|
-
*
|
|
3910
|
+
* Replaces usages of `ReactDom.render()` with `createRoot(node).render()`.
|
|
3911
|
+
* @see https://eslint-react.xyz/docs/rules/dom-no-render
|
|
3912
|
+
*/
|
|
3913
|
+
'react-dom/no-render'?: Linter.RuleEntry<[]>
|
|
3914
|
+
/**
|
|
3915
|
+
* Disallow the return value of `ReactDOM.render`.
|
|
3906
3916
|
* @see https://eslint-react.xyz/docs/rules/dom-no-render-return-value
|
|
3907
3917
|
*/
|
|
3908
3918
|
'react-dom/no-render-return-value'?: Linter.RuleEntry<[]>
|
|
3909
3919
|
/**
|
|
3910
|
-
*
|
|
3920
|
+
* Disallow `javascript:` URLs as attribute values.
|
|
3911
3921
|
* @see https://eslint-react.xyz/docs/rules/dom-no-script-url
|
|
3912
3922
|
*/
|
|
3913
3923
|
'react-dom/no-script-url'?: Linter.RuleEntry<[]>
|
|
3914
3924
|
/**
|
|
3915
|
-
*
|
|
3925
|
+
* Disallow unknown `DOM` property.
|
|
3916
3926
|
* @see https://eslint-react.xyz/docs/rules/dom-no-unknown-property
|
|
3917
3927
|
*/
|
|
3918
3928
|
'react-dom/no-unknown-property'?: Linter.RuleEntry<ReactDomNoUnknownProperty>
|
|
3919
3929
|
/**
|
|
3920
|
-
*
|
|
3930
|
+
* Enforces `sandbox` attribute for `iframe` elements is not set to unsafe combinations.
|
|
3921
3931
|
* @see https://eslint-react.xyz/docs/rules/dom-no-unsafe-iframe-sandbox
|
|
3922
3932
|
*/
|
|
3923
3933
|
'react-dom/no-unsafe-iframe-sandbox'?: Linter.RuleEntry<[]>
|
|
3924
3934
|
/**
|
|
3925
|
-
*
|
|
3935
|
+
* Disallow `target="_blank"` without `rel="noreferrer noopener"`.
|
|
3926
3936
|
* @see https://eslint-react.xyz/docs/rules/dom-no-unsafe-target-blank
|
|
3927
3937
|
*/
|
|
3928
3938
|
'react-dom/no-unsafe-target-blank'?: Linter.RuleEntry<[]>
|
|
3929
3939
|
/**
|
|
3930
|
-
*
|
|
3940
|
+
* Replaces usages of `useFormState` with `useActionState`.
|
|
3941
|
+
* @see https://eslint-react.xyz/docs/rules/dom-no-use-form-state
|
|
3942
|
+
*/
|
|
3943
|
+
'react-dom/no-use-form-state'?: Linter.RuleEntry<[]>
|
|
3944
|
+
/**
|
|
3945
|
+
* Disallow `children` in void DOM elements.
|
|
3931
3946
|
* @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
|
|
3932
3947
|
*/
|
|
3933
3948
|
'react-dom/no-void-elements-with-children'?: Linter.RuleEntry<[]>
|
|
3934
3949
|
/**
|
|
3935
|
-
*
|
|
3936
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-
|
|
3950
|
+
* Enforces that a function with the `use` prefix should use at least one Hook inside of it.
|
|
3951
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
|
|
3937
3952
|
*/
|
|
3938
3953
|
'react-hooks-extra/ensure-custom-hooks-using-other-hooks'?: Linter.RuleEntry<[]>
|
|
3939
3954
|
/**
|
|
3940
|
-
*
|
|
3955
|
+
* Disallow unnecessary usage of `useCallback`.
|
|
3941
3956
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-callback
|
|
3942
3957
|
*/
|
|
3943
3958
|
'react-hooks-extra/ensure-use-callback-has-non-empty-deps'?: Linter.RuleEntry<[]>
|
|
3944
3959
|
/**
|
|
3945
|
-
*
|
|
3960
|
+
* Disallow unnecessary usage of `useMemo`.
|
|
3946
3961
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
|
|
3947
3962
|
*/
|
|
3948
3963
|
'react-hooks-extra/ensure-use-memo-has-non-empty-deps'?: Linter.RuleEntry<[]>
|
|
3949
3964
|
/**
|
|
3950
|
-
*
|
|
3965
|
+
* Disallow direct calls to the `set` function of `useState` in `useEffect`.
|
|
3951
3966
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-effect
|
|
3952
3967
|
*/
|
|
3953
3968
|
'react-hooks-extra/no-direct-set-state-in-use-effect'?: Linter.RuleEntry<[]>
|
|
3954
3969
|
/**
|
|
3955
|
-
*
|
|
3970
|
+
* Disallow direct calls to the `set` function of `useState` in `useLayoutEffect`.
|
|
3956
3971
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-layout-effect
|
|
3957
3972
|
*/
|
|
3958
3973
|
'react-hooks-extra/no-direct-set-state-in-use-layout-effect'?: Linter.RuleEntry<[]>
|
|
3959
3974
|
/**
|
|
3960
|
-
*
|
|
3961
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-
|
|
3975
|
+
* Enforces that a function with the `use` prefix should use at least one Hook inside of it.
|
|
3976
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
|
|
3962
3977
|
*/
|
|
3963
3978
|
'react-hooks-extra/no-redundant-custom-hook'?: Linter.RuleEntry<[]>
|
|
3964
3979
|
/**
|
|
3965
|
-
*
|
|
3980
|
+
* Disallow unnecessary usage of `useCallback`.
|
|
3966
3981
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-callback
|
|
3967
3982
|
*/
|
|
3968
3983
|
'react-hooks-extra/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>
|
|
3969
3984
|
/**
|
|
3970
|
-
*
|
|
3985
|
+
* Disallow unnecessary usage of `useMemo`.
|
|
3971
3986
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
|
|
3972
3987
|
*/
|
|
3973
3988
|
'react-hooks-extra/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>
|
|
3974
3989
|
/**
|
|
3975
|
-
*
|
|
3976
|
-
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-
|
|
3990
|
+
* Enforces that a function with the `use` prefix should use at least one Hook inside of it.
|
|
3991
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
|
|
3992
|
+
*/
|
|
3993
|
+
'react-hooks-extra/no-unnecessary-use-prefix'?: Linter.RuleEntry<[]>
|
|
3994
|
+
/**
|
|
3995
|
+
* Enforces that a function with the `use` prefix should use at least one Hook inside of it.
|
|
3996
|
+
* @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
|
|
3977
3997
|
*/
|
|
3978
3998
|
'react-hooks-extra/no-useless-custom-hooks'?: Linter.RuleEntry<[]>
|
|
3979
3999
|
/**
|
|
3980
|
-
*
|
|
4000
|
+
* Enforces function calls made inside `useState` to be wrapped in an `initializer function`.
|
|
3981
4001
|
* @see https://eslint-react.xyz/docs/rules/hooks-extra-prefer-use-state-lazy-initialization
|
|
3982
4002
|
*/
|
|
3983
4003
|
'react-hooks-extra/prefer-use-state-lazy-initialization'?: Linter.RuleEntry<[]>
|
|
@@ -3992,27 +4012,27 @@ Backward pagination arguments
|
|
|
3992
4012
|
*/
|
|
3993
4013
|
'react-hooks/rules-of-hooks'?: Linter.RuleEntry<[]>
|
|
3994
4014
|
/**
|
|
3995
|
-
*
|
|
4015
|
+
* Enforces naming conventions for components.
|
|
3996
4016
|
* @see https://eslint-react.xyz/docs/rules/naming-convention-component-name
|
|
3997
4017
|
*/
|
|
3998
4018
|
'react-naming-convention/component-name'?: Linter.RuleEntry<ReactNamingConventionComponentName>
|
|
3999
4019
|
/**
|
|
4000
|
-
*
|
|
4020
|
+
* Enforces context name to be a valid component name with the suffix `Context`.
|
|
4001
4021
|
* @see https://eslint-react.xyz/docs/rules/naming-convention-context-name
|
|
4002
4022
|
*/
|
|
4003
4023
|
'react-naming-convention/context-name'?: Linter.RuleEntry<[]>
|
|
4004
4024
|
/**
|
|
4005
|
-
*
|
|
4025
|
+
* Enforces consistent file naming conventions.
|
|
4006
4026
|
* @see https://eslint-react.xyz/docs/rules/naming-convention-filename
|
|
4007
4027
|
*/
|
|
4008
4028
|
'react-naming-convention/filename'?: Linter.RuleEntry<ReactNamingConventionFilename>
|
|
4009
4029
|
/**
|
|
4010
|
-
*
|
|
4030
|
+
* Enforces consistent file naming conventions.
|
|
4011
4031
|
* @see https://eslint-react.xyz/docs/rules/naming-convention-filename-extension
|
|
4012
4032
|
*/
|
|
4013
4033
|
'react-naming-convention/filename-extension'?: Linter.RuleEntry<ReactNamingConventionFilenameExtension>
|
|
4014
4034
|
/**
|
|
4015
|
-
*
|
|
4035
|
+
* Enforces destructuring and symmetric naming of `useState` hook value and setter.
|
|
4016
4036
|
* @see https://eslint-react.xyz/docs/rules/naming-convention-use-state
|
|
4017
4037
|
*/
|
|
4018
4038
|
'react-naming-convention/use-state'?: Linter.RuleEntry<[]>
|
|
@@ -4028,298 +4048,318 @@ Backward pagination arguments
|
|
|
4028
4048
|
'react-native/split-platform-components'?: Linter.RuleEntry<ReactNativeSplitPlatformComponents>
|
|
4029
4049
|
'react-refresh/only-export-components'?: Linter.RuleEntry<ReactRefreshOnlyExportComponents>
|
|
4030
4050
|
/**
|
|
4031
|
-
*
|
|
4051
|
+
* Prevents leaked `addEventListener` in a component or custom Hook.
|
|
4032
4052
|
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-event-listener
|
|
4033
4053
|
*/
|
|
4034
4054
|
'react-web-api/no-leaked-event-listener'?: Linter.RuleEntry<[]>
|
|
4035
4055
|
/**
|
|
4036
|
-
*
|
|
4056
|
+
* Prevents leaked `setInterval` in a component or custom Hook.
|
|
4037
4057
|
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-interval
|
|
4038
4058
|
*/
|
|
4039
4059
|
'react-web-api/no-leaked-interval'?: Linter.RuleEntry<[]>
|
|
4040
4060
|
/**
|
|
4041
|
-
*
|
|
4061
|
+
* Prevents leaked `ResizeObserver` in a component or custom Hook.
|
|
4042
4062
|
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-resize-observer
|
|
4043
4063
|
*/
|
|
4044
4064
|
'react-web-api/no-leaked-resize-observer'?: Linter.RuleEntry<[]>
|
|
4045
4065
|
/**
|
|
4046
|
-
*
|
|
4066
|
+
* Prevents leaked `setTimeout` in a component or custom Hook.
|
|
4047
4067
|
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-timeout
|
|
4048
4068
|
*/
|
|
4049
4069
|
'react-web-api/no-leaked-timeout'?: Linter.RuleEntry<[]>
|
|
4050
4070
|
/**
|
|
4051
|
-
*
|
|
4071
|
+
* Enforces explicit boolean values for boolean attributes.
|
|
4052
4072
|
* @see https://eslint-react.xyz/docs/rules/avoid-shorthand-boolean
|
|
4053
4073
|
*/
|
|
4054
4074
|
'react/avoid-shorthand-boolean'?: Linter.RuleEntry<[]>
|
|
4055
4075
|
/**
|
|
4056
|
-
*
|
|
4076
|
+
* Enforces explicit `<Fragment>` components instead of the shorthand `<>` or `</>` syntax.
|
|
4057
4077
|
* @see https://eslint-react.xyz/docs/rules/avoid-shorthand-fragment
|
|
4058
4078
|
*/
|
|
4059
4079
|
'react/avoid-shorthand-fragment'?: Linter.RuleEntry<[]>
|
|
4060
4080
|
/**
|
|
4061
|
-
*
|
|
4062
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
4081
|
+
* Disallow useless `forwardRef` calls on components that don't use `ref`s.
|
|
4082
|
+
* @see https://eslint-react.xyz/docs/rules/no-useless-forward-ref
|
|
4063
4083
|
*/
|
|
4064
4084
|
'react/ensure-forward-ref-using-ref'?: Linter.RuleEntry<[]>
|
|
4065
4085
|
/**
|
|
4066
|
-
*
|
|
4067
|
-
* @see https://eslint-react.xyz/docs/rules/no-duplicate-
|
|
4086
|
+
* Disallow duplicate props in JSX elements.
|
|
4087
|
+
* @see https://eslint-react.xyz/docs/rules/jsx-no-duplicate-props
|
|
4068
4088
|
*/
|
|
4069
4089
|
'react/jsx-no-duplicate-props'?: Linter.RuleEntry<[]>
|
|
4070
4090
|
/**
|
|
4071
|
-
*
|
|
4072
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
4091
|
+
* Disallow undefined variables in JSX.
|
|
4092
|
+
* @see https://eslint-react.xyz/docs/rules/jsx-no-undef
|
|
4093
|
+
*/
|
|
4094
|
+
'react/jsx-no-undef'?: Linter.RuleEntry<[]>
|
|
4095
|
+
/**
|
|
4096
|
+
* Marks React variables as used when JSX is used.
|
|
4097
|
+
* @see https://eslint-react.xyz/docs/rules/jsx-uses-react
|
|
4098
|
+
*/
|
|
4099
|
+
'react/jsx-uses-react'?: Linter.RuleEntry<[]>
|
|
4100
|
+
/**
|
|
4101
|
+
* Marks variables used in JSX elements as used.
|
|
4102
|
+
* @see https://eslint-react.xyz/docs/rules/jsx-uses-vars
|
|
4073
4103
|
*/
|
|
4074
4104
|
'react/jsx-uses-vars'?: Linter.RuleEntry<[]>
|
|
4075
4105
|
/**
|
|
4076
|
-
*
|
|
4106
|
+
* Disallow accessing `this.state` inside `setState` calls.
|
|
4077
4107
|
* @see https://eslint-react.xyz/docs/rules/no-access-state-in-setstate
|
|
4078
4108
|
*/
|
|
4079
4109
|
'react/no-access-state-in-setstate'?: Linter.RuleEntry<[]>
|
|
4080
4110
|
/**
|
|
4081
|
-
*
|
|
4111
|
+
* Disallow an item's index in the array as its key.
|
|
4082
4112
|
* @see https://eslint-react.xyz/docs/rules/no-array-index-key
|
|
4083
4113
|
*/
|
|
4084
4114
|
'react/no-array-index-key'?: Linter.RuleEntry<[]>
|
|
4085
4115
|
/**
|
|
4086
|
-
*
|
|
4116
|
+
* Disallow `Children.count`.
|
|
4087
4117
|
* @see https://eslint-react.xyz/docs/rules/no-children-count
|
|
4088
4118
|
*/
|
|
4089
4119
|
'react/no-children-count'?: Linter.RuleEntry<[]>
|
|
4090
4120
|
/**
|
|
4091
|
-
*
|
|
4121
|
+
* Disallow 'Children.forEach'.
|
|
4092
4122
|
* @see https://eslint-react.xyz/docs/rules/no-children-for-each
|
|
4093
4123
|
*/
|
|
4094
4124
|
'react/no-children-for-each'?: Linter.RuleEntry<[]>
|
|
4095
4125
|
/**
|
|
4096
|
-
*
|
|
4126
|
+
* Disallow `Children.map`.
|
|
4097
4127
|
* @see https://eslint-react.xyz/docs/rules/no-children-map
|
|
4098
4128
|
*/
|
|
4099
4129
|
'react/no-children-map'?: Linter.RuleEntry<[]>
|
|
4100
4130
|
/**
|
|
4101
|
-
*
|
|
4131
|
+
* Disallow `Children.only`.
|
|
4102
4132
|
* @see https://eslint-react.xyz/docs/rules/no-children-only
|
|
4103
4133
|
*/
|
|
4104
4134
|
'react/no-children-only'?: Linter.RuleEntry<[]>
|
|
4105
4135
|
/**
|
|
4106
|
-
*
|
|
4136
|
+
* Disallow passing `children` as a prop.
|
|
4107
4137
|
* @see https://eslint-react.xyz/docs/rules/no-children-prop
|
|
4108
4138
|
*/
|
|
4109
4139
|
'react/no-children-prop'?: Linter.RuleEntry<[]>
|
|
4110
4140
|
/**
|
|
4111
|
-
*
|
|
4141
|
+
* Disallow `Children.toArray`.
|
|
4112
4142
|
* @see https://eslint-react.xyz/docs/rules/no-children-to-array
|
|
4113
4143
|
*/
|
|
4114
4144
|
'react/no-children-to-array'?: Linter.RuleEntry<[]>
|
|
4115
4145
|
/**
|
|
4116
|
-
*
|
|
4146
|
+
* Disallow class components.
|
|
4117
4147
|
* @see https://eslint-react.xyz/docs/rules/no-class-component
|
|
4118
4148
|
*/
|
|
4119
4149
|
'react/no-class-component'?: Linter.RuleEntry<[]>
|
|
4120
4150
|
/**
|
|
4121
|
-
*
|
|
4151
|
+
* Disallow `cloneElement`.
|
|
4122
4152
|
* @see https://eslint-react.xyz/docs/rules/no-clone-element
|
|
4123
4153
|
*/
|
|
4124
4154
|
'react/no-clone-element'?: Linter.RuleEntry<[]>
|
|
4125
4155
|
/**
|
|
4126
|
-
*
|
|
4156
|
+
* Prevents comments from being inserted as text nodes.
|
|
4127
4157
|
* @see https://eslint-react.xyz/docs/rules/no-comment-textnodes
|
|
4128
4158
|
*/
|
|
4129
4159
|
'react/no-comment-textnodes'?: Linter.RuleEntry<[]>
|
|
4130
4160
|
/**
|
|
4131
|
-
*
|
|
4161
|
+
* Disallow complex conditional rendering in JSX expressions.
|
|
4132
4162
|
* @see https://eslint-react.xyz/docs/rules/no-complex-conditional-rendering
|
|
4133
4163
|
*/
|
|
4134
4164
|
'react/no-complex-conditional-rendering'?: Linter.RuleEntry<[]>
|
|
4135
4165
|
/**
|
|
4136
|
-
*
|
|
4166
|
+
* Disallow complex conditional rendering in JSX expressions.
|
|
4137
4167
|
* @see https://eslint-react.xyz/docs/rules/no-complex-conditional-rendering
|
|
4138
4168
|
*/
|
|
4139
4169
|
'react/no-complicated-conditional-rendering'?: Linter.RuleEntry<[]>
|
|
4140
4170
|
/**
|
|
4141
|
-
*
|
|
4171
|
+
* Replace usages of `componentWillMount` with `UNSAFE_componentWillMount`.
|
|
4142
4172
|
* @see https://eslint-react.xyz/docs/rules/no-component-will-mount
|
|
4143
4173
|
*/
|
|
4144
4174
|
'react/no-component-will-mount'?: Linter.RuleEntry<[]>
|
|
4145
4175
|
/**
|
|
4146
|
-
*
|
|
4176
|
+
* Replace usages of `componentWillReceiveProps` with `UNSAFE_componentWillReceiveProps`.
|
|
4147
4177
|
* @see https://eslint-react.xyz/docs/rules/no-component-will-receive-props
|
|
4148
4178
|
*/
|
|
4149
4179
|
'react/no-component-will-receive-props'?: Linter.RuleEntry<[]>
|
|
4150
4180
|
/**
|
|
4151
|
-
*
|
|
4181
|
+
* Replace usages of `componentWillUpdate` with `UNSAFE_componentWillUpdate`.
|
|
4152
4182
|
* @see https://eslint-react.xyz/docs/rules/no-component-will-update
|
|
4153
4183
|
*/
|
|
4154
4184
|
'react/no-component-will-update'?: Linter.RuleEntry<[]>
|
|
4155
4185
|
/**
|
|
4156
|
-
*
|
|
4186
|
+
* Replace usages of `<Context.Provider>` with `<Context>`.
|
|
4157
4187
|
* @see https://eslint-react.xyz/docs/rules/no-context-provider
|
|
4158
4188
|
*/
|
|
4159
4189
|
'react/no-context-provider'?: Linter.RuleEntry<[]>
|
|
4160
4190
|
/**
|
|
4161
|
-
*
|
|
4191
|
+
* Disallow `createRef` in function components.
|
|
4162
4192
|
* @see https://eslint-react.xyz/docs/rules/no-create-ref
|
|
4163
4193
|
*/
|
|
4164
4194
|
'react/no-create-ref'?: Linter.RuleEntry<[]>
|
|
4165
4195
|
/**
|
|
4166
|
-
*
|
|
4196
|
+
* Disallow `defaultProps` property in favor of ES6 default parameters.
|
|
4167
4197
|
* @see https://eslint-react.xyz/docs/rules/no-default-props
|
|
4168
4198
|
*/
|
|
4169
4199
|
'react/no-default-props'?: Linter.RuleEntry<[]>
|
|
4170
4200
|
/**
|
|
4171
|
-
*
|
|
4201
|
+
* Disallow direct mutation of `this.state`.
|
|
4172
4202
|
* @see https://eslint-react.xyz/docs/rules/no-direct-mutation-state
|
|
4173
4203
|
*/
|
|
4174
4204
|
'react/no-direct-mutation-state'?: Linter.RuleEntry<[]>
|
|
4175
4205
|
/**
|
|
4176
|
-
*
|
|
4177
|
-
* @see https://eslint-react.xyz/docs/rules/no-duplicate-
|
|
4206
|
+
* Disallow duplicate props in JSX elements.
|
|
4207
|
+
* @see https://eslint-react.xyz/docs/rules/jsx-no-duplicate-props
|
|
4178
4208
|
*/
|
|
4179
4209
|
'react/no-duplicate-jsx-props'?: Linter.RuleEntry<[]>
|
|
4180
4210
|
/**
|
|
4181
|
-
*
|
|
4211
|
+
* Disallow duplicate `key` on elements in the same array or a list of `children`.
|
|
4182
4212
|
* @see https://eslint-react.xyz/docs/rules/no-duplicate-key
|
|
4183
4213
|
*/
|
|
4184
4214
|
'react/no-duplicate-key'?: Linter.RuleEntry<[]>
|
|
4185
4215
|
/**
|
|
4186
|
-
*
|
|
4216
|
+
* Replaces usages of `forwardRef` with passing `ref` as a prop.
|
|
4187
4217
|
* @see https://eslint-react.xyz/docs/rules/no-forward-ref
|
|
4188
4218
|
*/
|
|
4189
4219
|
'react/no-forward-ref'?: Linter.RuleEntry<[]>
|
|
4190
4220
|
/**
|
|
4191
|
-
*
|
|
4221
|
+
* Prevents `key` from not being explicitly specified (e.g. spreading `key` from objects).
|
|
4192
4222
|
* @see https://eslint-react.xyz/docs/rules/no-implicit-key
|
|
4193
4223
|
*/
|
|
4194
4224
|
'react/no-implicit-key'?: Linter.RuleEntry<[]>
|
|
4195
4225
|
/**
|
|
4196
|
-
*
|
|
4226
|
+
* Prevents problematic leaked values from being rendered.
|
|
4197
4227
|
* @see https://eslint-react.xyz/docs/rules/no-leaked-conditional-rendering
|
|
4198
4228
|
*/
|
|
4199
4229
|
'react/no-leaked-conditional-rendering'?: Linter.RuleEntry<[]>
|
|
4200
4230
|
/**
|
|
4201
|
-
*
|
|
4231
|
+
* Enforces that all components have a `displayName` which can be used in devtools.
|
|
4202
4232
|
* @see https://eslint-react.xyz/docs/rules/no-missing-component-display-name
|
|
4203
4233
|
*/
|
|
4204
4234
|
'react/no-missing-component-display-name'?: Linter.RuleEntry<[]>
|
|
4205
4235
|
/**
|
|
4206
|
-
*
|
|
4236
|
+
* Enforces that all contexts have a `displayName` which can be used in devtools.
|
|
4207
4237
|
* @see https://eslint-react.xyz/docs/rules/no-missing-context-display-name
|
|
4208
4238
|
*/
|
|
4209
4239
|
'react/no-missing-context-display-name'?: Linter.RuleEntry<[]>
|
|
4210
4240
|
/**
|
|
4211
|
-
*
|
|
4241
|
+
* Disallow missing `key` on items in list rendering.
|
|
4212
4242
|
* @see https://eslint-react.xyz/docs/rules/no-missing-key
|
|
4213
4243
|
*/
|
|
4214
4244
|
'react/no-missing-key'?: Linter.RuleEntry<[]>
|
|
4215
4245
|
/**
|
|
4216
|
-
*
|
|
4217
|
-
* @see https://eslint-react.xyz/docs/rules/no-nested-
|
|
4246
|
+
* Disallow nesting component definitions inside other components.
|
|
4247
|
+
* @see https://eslint-react.xyz/docs/rules/no-nested-component-definitions
|
|
4248
|
+
*/
|
|
4249
|
+
'react/no-nested-component-definitions'?: Linter.RuleEntry<[]>
|
|
4250
|
+
/**
|
|
4251
|
+
* Disallow nesting component definitions inside other components.
|
|
4252
|
+
* @see https://eslint-react.xyz/docs/rules/no-nested-component-definitions
|
|
4218
4253
|
*/
|
|
4219
4254
|
'react/no-nested-components'?: Linter.RuleEntry<[]>
|
|
4220
4255
|
/**
|
|
4221
|
-
*
|
|
4256
|
+
* Disallow `propTypes` in favor of TypeScript or another type-checking solution.
|
|
4222
4257
|
* @see https://eslint-react.xyz/docs/rules/no-prop-types
|
|
4223
4258
|
*/
|
|
4224
4259
|
'react/no-prop-types'?: Linter.RuleEntry<[]>
|
|
4225
4260
|
/**
|
|
4226
|
-
*
|
|
4261
|
+
* Disallow `shouldComponentUpdate` when extending `React.PureComponent`.
|
|
4227
4262
|
* @see https://eslint-react.xyz/docs/rules/no-redundant-should-component-update
|
|
4228
4263
|
*/
|
|
4229
4264
|
'react/no-redundant-should-component-update'?: Linter.RuleEntry<[]>
|
|
4230
4265
|
/**
|
|
4231
|
-
*
|
|
4266
|
+
* Disallow calling `this.setState` in `componentDidMount` outside of functions, such as callbacks.
|
|
4232
4267
|
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-mount
|
|
4233
4268
|
*/
|
|
4234
4269
|
'react/no-set-state-in-component-did-mount'?: Linter.RuleEntry<[]>
|
|
4235
4270
|
/**
|
|
4236
|
-
*
|
|
4271
|
+
* Disallows calling `this.setState` in `componentDidUpdate` outside of functions, such as callbacks.
|
|
4237
4272
|
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-update
|
|
4238
4273
|
*/
|
|
4239
4274
|
'react/no-set-state-in-component-did-update'?: Linter.RuleEntry<[]>
|
|
4240
4275
|
/**
|
|
4241
|
-
*
|
|
4276
|
+
* Disallows calling `this.setState` in `componentWillUpdate` outside of functions, such as callbacks.
|
|
4242
4277
|
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-will-update
|
|
4243
4278
|
*/
|
|
4244
4279
|
'react/no-set-state-in-component-will-update'?: Linter.RuleEntry<[]>
|
|
4245
4280
|
/**
|
|
4246
|
-
*
|
|
4281
|
+
* Disallow deprecated string `refs`.
|
|
4247
4282
|
* @see https://eslint-react.xyz/docs/rules/no-string-refs
|
|
4248
4283
|
*/
|
|
4249
4284
|
'react/no-string-refs'?: Linter.RuleEntry<[]>
|
|
4250
4285
|
/**
|
|
4251
|
-
*
|
|
4286
|
+
* Warns the usage of `UNSAFE_componentWillMount` in class components.
|
|
4252
4287
|
* @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-mount
|
|
4253
4288
|
*/
|
|
4254
4289
|
'react/no-unsafe-component-will-mount'?: Linter.RuleEntry<[]>
|
|
4255
4290
|
/**
|
|
4256
|
-
*
|
|
4291
|
+
* Warns the usage of `UNSAFE_componentWillReceiveProps` in class components.
|
|
4257
4292
|
* @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-receive-props
|
|
4258
4293
|
*/
|
|
4259
4294
|
'react/no-unsafe-component-will-receive-props'?: Linter.RuleEntry<[]>
|
|
4260
4295
|
/**
|
|
4261
|
-
*
|
|
4296
|
+
* Warns the usage of `UNSAFE_componentWillUpdate` in class components.
|
|
4262
4297
|
* @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-update
|
|
4263
4298
|
*/
|
|
4264
4299
|
'react/no-unsafe-component-will-update'?: Linter.RuleEntry<[]>
|
|
4265
4300
|
/**
|
|
4266
|
-
*
|
|
4301
|
+
* Prevents non-stable values (i.e. object literals) from being used as a value for `Context.Provider`.
|
|
4267
4302
|
* @see https://eslint-react.xyz/docs/rules/no-unstable-context-value
|
|
4268
4303
|
*/
|
|
4269
4304
|
'react/no-unstable-context-value'?: Linter.RuleEntry<[]>
|
|
4270
4305
|
/**
|
|
4271
|
-
*
|
|
4306
|
+
* Prevents using referential-type values as default props in object destructuring.
|
|
4272
4307
|
* @see https://eslint-react.xyz/docs/rules/no-unstable-default-props
|
|
4273
4308
|
*/
|
|
4274
4309
|
'react/no-unstable-default-props'?: Linter.RuleEntry<[]>
|
|
4275
4310
|
/**
|
|
4276
|
-
*
|
|
4311
|
+
* Warns unused class component methods and properties.
|
|
4277
4312
|
* @see https://eslint-react.xyz/docs/rules/no-unused-class-component-members
|
|
4278
4313
|
*/
|
|
4279
4314
|
'react/no-unused-class-component-members'?: Linter.RuleEntry<[]>
|
|
4280
4315
|
/**
|
|
4281
|
-
*
|
|
4316
|
+
* Warns unused class component state.
|
|
4282
4317
|
* @see https://eslint-react.xyz/docs/rules/no-unused-state
|
|
4283
4318
|
*/
|
|
4284
4319
|
'react/no-unused-state'?: Linter.RuleEntry<[]>
|
|
4285
4320
|
/**
|
|
4286
|
-
*
|
|
4321
|
+
* Replaces usages of `useContext` with `use`.
|
|
4287
4322
|
* @see https://eslint-react.xyz/docs/rules/no-use-context
|
|
4288
4323
|
*/
|
|
4289
4324
|
'react/no-use-context'?: Linter.RuleEntry<[]>
|
|
4290
4325
|
/**
|
|
4291
|
-
*
|
|
4326
|
+
* Disallow useless `forwardRef` calls on components that don't use `ref`s.
|
|
4327
|
+
* @see https://eslint-react.xyz/docs/rules/no-useless-forward-ref
|
|
4328
|
+
*/
|
|
4329
|
+
'react/no-useless-forward-ref'?: Linter.RuleEntry<[]>
|
|
4330
|
+
/**
|
|
4331
|
+
* Disallow useless fragment elements.
|
|
4292
4332
|
* @see https://eslint-react.xyz/docs/rules/no-useless-fragment
|
|
4293
4333
|
*/
|
|
4294
4334
|
'react/no-useless-fragment'?: Linter.RuleEntry<ReactNoUselessFragment>
|
|
4295
4335
|
/**
|
|
4296
|
-
*
|
|
4336
|
+
* Enforces destructuring assignment for component props and context.
|
|
4297
4337
|
* @see https://eslint-react.xyz/docs/rules/prefer-destructuring-assignment
|
|
4298
4338
|
*/
|
|
4299
4339
|
'react/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>
|
|
4300
4340
|
/**
|
|
4301
|
-
*
|
|
4341
|
+
* Enforces React is imported via a namespace import.
|
|
4302
4342
|
* @see https://eslint-react.xyz/docs/rules/prefer-react-namespace-import
|
|
4303
4343
|
*/
|
|
4304
4344
|
'react/prefer-react-namespace-import'?: Linter.RuleEntry<[]>
|
|
4305
4345
|
/**
|
|
4306
|
-
*
|
|
4346
|
+
* Enforces read-only props in components.
|
|
4307
4347
|
* @see https://eslint-react.xyz/docs/rules/prefer-read-only-props
|
|
4308
4348
|
*/
|
|
4309
4349
|
'react/prefer-read-only-props'?: Linter.RuleEntry<[]>
|
|
4310
4350
|
/**
|
|
4311
|
-
*
|
|
4351
|
+
* Enforces shorthand syntax for boolean attributes.
|
|
4312
4352
|
* @see https://eslint-react.xyz/docs/rules/prefer-shorthand-boolean
|
|
4313
4353
|
*/
|
|
4314
4354
|
'react/prefer-shorthand-boolean'?: Linter.RuleEntry<[]>
|
|
4315
4355
|
/**
|
|
4316
|
-
*
|
|
4356
|
+
* Enforces shorthand syntax for fragments.
|
|
4317
4357
|
* @see https://eslint-react.xyz/docs/rules/prefer-shorthand-fragment
|
|
4318
4358
|
*/
|
|
4319
4359
|
'react/prefer-shorthand-fragment'?: Linter.RuleEntry<[]>
|
|
4320
4360
|
/**
|
|
4321
|
-
*
|
|
4322
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
4361
|
+
* Marks variables used in JSX elements as used.
|
|
4362
|
+
* @see https://eslint-react.xyz/docs/rules/jsx-uses-vars
|
|
4323
4363
|
*/
|
|
4324
4364
|
'react/use-jsx-vars'?: Linter.RuleEntry<[]>
|
|
4325
4365
|
/**
|
|
@@ -4912,7 +4952,7 @@ Backward pagination arguments
|
|
|
4912
4952
|
*/
|
|
4913
4953
|
'storybook/story-exports'?: Linter.RuleEntry<[]>
|
|
4914
4954
|
/**
|
|
4915
|
-
* Use expect from `@storybook/test` or `@storybook/jest`
|
|
4955
|
+
* Use expect from `@storybook/test`, `storybook/test` or `@storybook/jest`
|
|
4916
4956
|
* @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/use-storybook-expect.md
|
|
4917
4957
|
*/
|
|
4918
4958
|
'storybook/use-storybook-expect'?: Linter.RuleEntry<[]>
|
|
@@ -7651,7 +7691,7 @@ type GraphqlEslintMatchDocumentFilename = [{
|
|
|
7651
7691
|
}]
|
|
7652
7692
|
type _GraphqlEslintMatchDocumentFilenameAsString = ("camelCase" | "PascalCase" | "snake_case" | "UPPER_CASE" | "kebab-case" | "matchDocumentStyle")
|
|
7653
7693
|
interface _GraphqlEslintMatchDocumentFilename_AsObject {
|
|
7654
|
-
style?:
|
|
7694
|
+
style?: _GraphqlEslintMatchDocumentFilenameAsString
|
|
7655
7695
|
suffix?: string
|
|
7656
7696
|
prefix?: string
|
|
7657
7697
|
}
|
|
@@ -7693,7 +7733,7 @@ type GraphqlEslintNamingConvention = []|[{
|
|
|
7693
7733
|
}]
|
|
7694
7734
|
type _GraphqlEslintNamingConventionAsString = ("camelCase" | "PascalCase" | "snake_case" | "UPPER_CASE")
|
|
7695
7735
|
interface _GraphqlEslintNamingConvention_AsObject {
|
|
7696
|
-
style?:
|
|
7736
|
+
style?: _GraphqlEslintNamingConventionAsString
|
|
7697
7737
|
prefix?: string
|
|
7698
7738
|
suffix?: string
|
|
7699
7739
|
|
|
@@ -7703,11 +7743,9 @@ interface _GraphqlEslintNamingConvention_AsObject {
|
|
|
7703
7743
|
[k: string]: unknown | undefined
|
|
7704
7744
|
})[]]
|
|
7705
7745
|
|
|
7706
|
-
|
|
7746
|
+
requiredPattern?: {
|
|
7707
7747
|
[k: string]: unknown | undefined
|
|
7708
|
-
}
|
|
7709
|
-
[k: string]: unknown | undefined
|
|
7710
|
-
})[]]
|
|
7748
|
+
}
|
|
7711
7749
|
|
|
7712
7750
|
forbiddenPrefixes?: [string, ...(string)[]]
|
|
7713
7751
|
|
|
@@ -8164,6 +8202,8 @@ type CapitalizedComments = []|[("always" | "never")]|[("always" | "never"), ({
|
|
|
8164
8202
|
type ClassMethodsUseThis = []|[{
|
|
8165
8203
|
exceptMethods?: string[]
|
|
8166
8204
|
enforceForClassFields?: boolean
|
|
8205
|
+
ignoreOverrideMethods?: boolean
|
|
8206
|
+
ignoreClassesWithImplements?: ("all" | "public-fields")
|
|
8167
8207
|
}]
|
|
8168
8208
|
// ----- comma-dangle -----
|
|
8169
8209
|
type CommaDangle = []|[(_CommaDangleValue | {
|
|
@@ -8337,7 +8377,7 @@ type GraphqlMatchDocumentFilename = [{
|
|
|
8337
8377
|
}]
|
|
8338
8378
|
type _GraphqlMatchDocumentFilenameAsString = ("camelCase" | "PascalCase" | "snake_case" | "UPPER_CASE" | "kebab-case" | "matchDocumentStyle")
|
|
8339
8379
|
interface _GraphqlMatchDocumentFilename_AsObject {
|
|
8340
|
-
style?:
|
|
8380
|
+
style?: _GraphqlMatchDocumentFilenameAsString
|
|
8341
8381
|
suffix?: string
|
|
8342
8382
|
prefix?: string
|
|
8343
8383
|
}
|
|
@@ -8379,7 +8419,7 @@ type GraphqlNamingConvention = []|[{
|
|
|
8379
8419
|
}]
|
|
8380
8420
|
type _GraphqlNamingConventionAsString = ("camelCase" | "PascalCase" | "snake_case" | "UPPER_CASE")
|
|
8381
8421
|
interface _GraphqlNamingConvention_AsObject {
|
|
8382
|
-
style?:
|
|
8422
|
+
style?: _GraphqlNamingConventionAsString
|
|
8383
8423
|
prefix?: string
|
|
8384
8424
|
suffix?: string
|
|
8385
8425
|
|
|
@@ -8389,11 +8429,9 @@ interface _GraphqlNamingConvention_AsObject {
|
|
|
8389
8429
|
[k: string]: unknown | undefined
|
|
8390
8430
|
})[]]
|
|
8391
8431
|
|
|
8392
|
-
|
|
8393
|
-
[k: string]: unknown | undefined
|
|
8394
|
-
}, ...({
|
|
8432
|
+
requiredPattern?: {
|
|
8395
8433
|
[k: string]: unknown | undefined
|
|
8396
|
-
}
|
|
8434
|
+
}
|
|
8397
8435
|
|
|
8398
8436
|
forbiddenPrefixes?: [string, ...(string)[]]
|
|
8399
8437
|
|
|
@@ -8517,7 +8555,7 @@ type IdMatch = []|[string]|[string, {
|
|
|
8517
8555
|
// ----- implicit-arrow-linebreak -----
|
|
8518
8556
|
type ImplicitArrowLinebreak = []|[("beside" | "below")]
|
|
8519
8557
|
// ----- import/consistent-type-specifier-style -----
|
|
8520
|
-
type ImportConsistentTypeSpecifierStyle = []|[("prefer-
|
|
8558
|
+
type ImportConsistentTypeSpecifierStyle = []|[("prefer-top-level" | "prefer-inline")]
|
|
8521
8559
|
// ----- import/dynamic-import-chunkname -----
|
|
8522
8560
|
type ImportDynamicImportChunkname = []|[{
|
|
8523
8561
|
importFunctions?: string[]
|
|
@@ -8737,6 +8775,17 @@ type ImportOrder = []|[{
|
|
|
8737
8775
|
position?: ("after" | "before")
|
|
8738
8776
|
}[]
|
|
8739
8777
|
"newlines-between"?: ("ignore" | "always" | "always-and-inside-groups" | "never")
|
|
8778
|
+
"newlines-between-types"?: ("ignore" | "always" | "always-and-inside-groups" | "never")
|
|
8779
|
+
consolidateIslands?: ("inside-groups" | "never")
|
|
8780
|
+
sortTypesGroup?: boolean
|
|
8781
|
+
named?: (boolean | {
|
|
8782
|
+
enabled?: boolean
|
|
8783
|
+
import?: boolean
|
|
8784
|
+
export?: boolean
|
|
8785
|
+
require?: boolean
|
|
8786
|
+
cjsExports?: boolean
|
|
8787
|
+
types?: ("mixed" | "types-first" | "types-last")
|
|
8788
|
+
})
|
|
8740
8789
|
alphabetize?: {
|
|
8741
8790
|
caseInsensitive?: boolean
|
|
8742
8791
|
order?: ("ignore" | "asc" | "desc")
|
|
@@ -10787,18 +10836,7 @@ type NodeNoRestrictedRequire = []|[(string | {
|
|
|
10787
10836
|
// ----- node/no-sync -----
|
|
10788
10837
|
type NodeNoSync = []|[{
|
|
10789
10838
|
allowAtRootLevel?: boolean
|
|
10790
|
-
ignores?:
|
|
10791
|
-
from?: "file"
|
|
10792
|
-
path?: string
|
|
10793
|
-
name?: string[]
|
|
10794
|
-
} | {
|
|
10795
|
-
from?: "lib"
|
|
10796
|
-
name?: string[]
|
|
10797
|
-
} | {
|
|
10798
|
-
from?: "package"
|
|
10799
|
-
package?: string
|
|
10800
|
-
name?: string[]
|
|
10801
|
-
})[]
|
|
10839
|
+
ignores?: string[]
|
|
10802
10840
|
}]
|
|
10803
10841
|
// ----- node/no-unpublished-bin -----
|
|
10804
10842
|
type NodeNoUnpublishedBin = []|[{
|
|
@@ -10886,7 +10924,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
10886
10924
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
10887
10925
|
version?: string
|
|
10888
10926
|
allowExperimental?: boolean
|
|
10889
|
-
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")[]
|
|
10927
|
+
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" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename")[]
|
|
10890
10928
|
}]
|
|
10891
10929
|
// ----- node/prefer-global/buffer -----
|
|
10892
10930
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -11029,8 +11067,6 @@ type PaddingLineBetweenStatements = {
|
|
|
11029
11067
|
// ----- perfectionist/sort-array-includes -----
|
|
11030
11068
|
type PerfectionistSortArrayIncludes = {
|
|
11031
11069
|
|
|
11032
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11033
|
-
|
|
11034
11070
|
fallbackSort?: {
|
|
11035
11071
|
|
|
11036
11072
|
order?: ("asc" | "desc")
|
|
@@ -11039,6 +11075,8 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11039
11075
|
[k: string]: unknown | undefined
|
|
11040
11076
|
}
|
|
11041
11077
|
|
|
11078
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11079
|
+
|
|
11042
11080
|
ignoreCase?: boolean
|
|
11043
11081
|
|
|
11044
11082
|
alphabet?: string
|
|
@@ -11053,13 +11091,21 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11053
11091
|
|
|
11054
11092
|
customGroups?: ({
|
|
11055
11093
|
|
|
11056
|
-
|
|
11094
|
+
newlinesInside?: ("always" | "never")
|
|
11057
11095
|
|
|
11058
|
-
|
|
11096
|
+
fallbackSort?: {
|
|
11097
|
+
|
|
11098
|
+
order?: ("asc" | "desc")
|
|
11099
|
+
|
|
11100
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11101
|
+
[k: string]: unknown | undefined
|
|
11102
|
+
}
|
|
11059
11103
|
|
|
11060
|
-
|
|
11104
|
+
groupName?: string
|
|
11061
11105
|
|
|
11062
|
-
|
|
11106
|
+
order?: ("asc" | "desc")
|
|
11107
|
+
|
|
11108
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11063
11109
|
anyOf?: {
|
|
11064
11110
|
|
|
11065
11111
|
selector?: ("literal" | "spread")
|
|
@@ -11074,13 +11120,21 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11074
11120
|
}[]
|
|
11075
11121
|
} | {
|
|
11076
11122
|
|
|
11077
|
-
|
|
11123
|
+
newlinesInside?: ("always" | "never")
|
|
11078
11124
|
|
|
11079
|
-
|
|
11125
|
+
fallbackSort?: {
|
|
11126
|
+
|
|
11127
|
+
order?: ("asc" | "desc")
|
|
11128
|
+
|
|
11129
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11130
|
+
[k: string]: unknown | undefined
|
|
11131
|
+
}
|
|
11080
11132
|
|
|
11081
|
-
|
|
11133
|
+
groupName?: string
|
|
11082
11134
|
|
|
11083
|
-
|
|
11135
|
+
order?: ("asc" | "desc")
|
|
11136
|
+
|
|
11137
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11084
11138
|
|
|
11085
11139
|
selector?: ("literal" | "spread")
|
|
11086
11140
|
|
|
@@ -11138,8 +11192,6 @@ type PerfectionistSortArrayIncludes = {
|
|
|
11138
11192
|
// ----- perfectionist/sort-classes -----
|
|
11139
11193
|
type PerfectionistSortClasses = []|[{
|
|
11140
11194
|
|
|
11141
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11142
|
-
|
|
11143
11195
|
fallbackSort?: {
|
|
11144
11196
|
|
|
11145
11197
|
order?: ("asc" | "desc")
|
|
@@ -11148,6 +11200,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
11148
11200
|
[k: string]: unknown | undefined
|
|
11149
11201
|
}
|
|
11150
11202
|
|
|
11203
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11204
|
+
|
|
11151
11205
|
ignoreCase?: boolean
|
|
11152
11206
|
|
|
11153
11207
|
alphabet?: string
|
|
@@ -11160,13 +11214,21 @@ type PerfectionistSortClasses = []|[{
|
|
|
11160
11214
|
|
|
11161
11215
|
customGroups?: ({
|
|
11162
11216
|
|
|
11163
|
-
|
|
11217
|
+
newlinesInside?: ("always" | "never")
|
|
11218
|
+
|
|
11219
|
+
fallbackSort?: {
|
|
11220
|
+
|
|
11221
|
+
order?: ("asc" | "desc")
|
|
11222
|
+
|
|
11223
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11224
|
+
[k: string]: unknown | undefined
|
|
11225
|
+
}
|
|
11164
11226
|
|
|
11165
|
-
|
|
11227
|
+
groupName?: string
|
|
11166
11228
|
|
|
11167
|
-
order?: ("
|
|
11229
|
+
order?: ("asc" | "desc")
|
|
11168
11230
|
|
|
11169
|
-
|
|
11231
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11170
11232
|
anyOf?: {
|
|
11171
11233
|
|
|
11172
11234
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
@@ -11199,13 +11261,21 @@ type PerfectionistSortClasses = []|[{
|
|
|
11199
11261
|
}[]
|
|
11200
11262
|
} | {
|
|
11201
11263
|
|
|
11202
|
-
|
|
11264
|
+
newlinesInside?: ("always" | "never")
|
|
11203
11265
|
|
|
11204
|
-
|
|
11266
|
+
fallbackSort?: {
|
|
11267
|
+
|
|
11268
|
+
order?: ("asc" | "desc")
|
|
11269
|
+
|
|
11270
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11271
|
+
[k: string]: unknown | undefined
|
|
11272
|
+
}
|
|
11205
11273
|
|
|
11206
|
-
|
|
11274
|
+
groupName?: string
|
|
11207
11275
|
|
|
11208
|
-
|
|
11276
|
+
order?: ("asc" | "desc")
|
|
11277
|
+
|
|
11278
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11209
11279
|
|
|
11210
11280
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
11211
11281
|
|
|
@@ -11279,8 +11349,6 @@ type PerfectionistSortClasses = []|[{
|
|
|
11279
11349
|
// ----- perfectionist/sort-decorators -----
|
|
11280
11350
|
type PerfectionistSortDecorators = []|[{
|
|
11281
11351
|
|
|
11282
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11283
|
-
|
|
11284
11352
|
fallbackSort?: {
|
|
11285
11353
|
|
|
11286
11354
|
order?: ("asc" | "desc")
|
|
@@ -11289,6 +11357,8 @@ type PerfectionistSortDecorators = []|[{
|
|
|
11289
11357
|
[k: string]: unknown | undefined
|
|
11290
11358
|
}
|
|
11291
11359
|
|
|
11360
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11361
|
+
|
|
11292
11362
|
ignoreCase?: boolean
|
|
11293
11363
|
|
|
11294
11364
|
alphabet?: string
|
|
@@ -11344,8 +11414,6 @@ type PerfectionistSortDecorators = []|[{
|
|
|
11344
11414
|
// ----- perfectionist/sort-enums -----
|
|
11345
11415
|
type PerfectionistSortEnums = []|[{
|
|
11346
11416
|
|
|
11347
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11348
|
-
|
|
11349
11417
|
fallbackSort?: {
|
|
11350
11418
|
|
|
11351
11419
|
order?: ("asc" | "desc")
|
|
@@ -11354,6 +11422,8 @@ type PerfectionistSortEnums = []|[{
|
|
|
11354
11422
|
[k: string]: unknown | undefined
|
|
11355
11423
|
}
|
|
11356
11424
|
|
|
11425
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11426
|
+
|
|
11357
11427
|
ignoreCase?: boolean
|
|
11358
11428
|
|
|
11359
11429
|
alphabet?: string
|
|
@@ -11369,13 +11439,21 @@ type PerfectionistSortEnums = []|[{
|
|
|
11369
11439
|
[k: string]: (string | string[]) | undefined
|
|
11370
11440
|
} | ({
|
|
11371
11441
|
|
|
11372
|
-
|
|
11442
|
+
newlinesInside?: ("always" | "never")
|
|
11373
11443
|
|
|
11374
|
-
|
|
11444
|
+
fallbackSort?: {
|
|
11445
|
+
|
|
11446
|
+
order?: ("asc" | "desc")
|
|
11447
|
+
|
|
11448
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11449
|
+
[k: string]: unknown | undefined
|
|
11450
|
+
}
|
|
11375
11451
|
|
|
11376
|
-
|
|
11452
|
+
groupName?: string
|
|
11377
11453
|
|
|
11378
|
-
|
|
11454
|
+
order?: ("asc" | "desc")
|
|
11455
|
+
|
|
11456
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11379
11457
|
anyOf?: {
|
|
11380
11458
|
|
|
11381
11459
|
elementValuePattern?: (({
|
|
@@ -11396,13 +11474,21 @@ type PerfectionistSortEnums = []|[{
|
|
|
11396
11474
|
}[]
|
|
11397
11475
|
} | {
|
|
11398
11476
|
|
|
11399
|
-
|
|
11477
|
+
newlinesInside?: ("always" | "never")
|
|
11478
|
+
|
|
11479
|
+
fallbackSort?: {
|
|
11480
|
+
|
|
11481
|
+
order?: ("asc" | "desc")
|
|
11482
|
+
|
|
11483
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11484
|
+
[k: string]: unknown | undefined
|
|
11485
|
+
}
|
|
11400
11486
|
|
|
11401
|
-
|
|
11487
|
+
groupName?: string
|
|
11402
11488
|
|
|
11403
|
-
order?: ("
|
|
11489
|
+
order?: ("asc" | "desc")
|
|
11404
11490
|
|
|
11405
|
-
|
|
11491
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11406
11492
|
|
|
11407
11493
|
elementValuePattern?: (({
|
|
11408
11494
|
pattern?: string
|
|
@@ -11456,9 +11542,7 @@ type PerfectionistSortEnums = []|[{
|
|
|
11456
11542
|
})[]
|
|
11457
11543
|
}]
|
|
11458
11544
|
// ----- perfectionist/sort-exports -----
|
|
11459
|
-
type PerfectionistSortExports =
|
|
11460
|
-
|
|
11461
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11545
|
+
type PerfectionistSortExports = {
|
|
11462
11546
|
|
|
11463
11547
|
fallbackSort?: {
|
|
11464
11548
|
|
|
@@ -11468,6 +11552,8 @@ type PerfectionistSortExports = []|[{
|
|
|
11468
11552
|
[k: string]: unknown | undefined
|
|
11469
11553
|
}
|
|
11470
11554
|
|
|
11555
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11556
|
+
|
|
11471
11557
|
ignoreCase?: boolean
|
|
11472
11558
|
|
|
11473
11559
|
alphabet?: string
|
|
@@ -11480,6 +11566,68 @@ type PerfectionistSortExports = []|[{
|
|
|
11480
11566
|
|
|
11481
11567
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
11482
11568
|
|
|
11569
|
+
customGroups?: ({
|
|
11570
|
+
|
|
11571
|
+
newlinesInside?: ("always" | "never")
|
|
11572
|
+
|
|
11573
|
+
fallbackSort?: {
|
|
11574
|
+
|
|
11575
|
+
order?: ("asc" | "desc")
|
|
11576
|
+
|
|
11577
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11578
|
+
[k: string]: unknown | undefined
|
|
11579
|
+
}
|
|
11580
|
+
|
|
11581
|
+
groupName?: string
|
|
11582
|
+
|
|
11583
|
+
order?: ("asc" | "desc")
|
|
11584
|
+
|
|
11585
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11586
|
+
anyOf?: {
|
|
11587
|
+
|
|
11588
|
+
modifiers?: ("value" | "type")[]
|
|
11589
|
+
|
|
11590
|
+
selector?: "export"
|
|
11591
|
+
|
|
11592
|
+
elementNamePattern?: (({
|
|
11593
|
+
pattern?: string
|
|
11594
|
+
flags?: string
|
|
11595
|
+
} | string)[] | ({
|
|
11596
|
+
pattern?: string
|
|
11597
|
+
flags?: string
|
|
11598
|
+
} | string))
|
|
11599
|
+
}[]
|
|
11600
|
+
} | {
|
|
11601
|
+
|
|
11602
|
+
newlinesInside?: ("always" | "never")
|
|
11603
|
+
|
|
11604
|
+
fallbackSort?: {
|
|
11605
|
+
|
|
11606
|
+
order?: ("asc" | "desc")
|
|
11607
|
+
|
|
11608
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11609
|
+
[k: string]: unknown | undefined
|
|
11610
|
+
}
|
|
11611
|
+
|
|
11612
|
+
groupName?: string
|
|
11613
|
+
|
|
11614
|
+
order?: ("asc" | "desc")
|
|
11615
|
+
|
|
11616
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11617
|
+
|
|
11618
|
+
modifiers?: ("value" | "type")[]
|
|
11619
|
+
|
|
11620
|
+
selector?: "export"
|
|
11621
|
+
|
|
11622
|
+
elementNamePattern?: (({
|
|
11623
|
+
pattern?: string
|
|
11624
|
+
flags?: string
|
|
11625
|
+
} | string)[] | ({
|
|
11626
|
+
pattern?: string
|
|
11627
|
+
flags?: string
|
|
11628
|
+
} | string))
|
|
11629
|
+
})[]
|
|
11630
|
+
|
|
11483
11631
|
partitionByComment?: (boolean | (({
|
|
11484
11632
|
pattern?: string
|
|
11485
11633
|
flags?: string
|
|
@@ -11504,12 +11652,17 @@ type PerfectionistSortExports = []|[{
|
|
|
11504
11652
|
})
|
|
11505
11653
|
|
|
11506
11654
|
partitionByNewLine?: boolean
|
|
11507
|
-
|
|
11655
|
+
|
|
11656
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11657
|
+
|
|
11658
|
+
groups?: (string | string[] | {
|
|
11659
|
+
|
|
11660
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11661
|
+
})[]
|
|
11662
|
+
}[]
|
|
11508
11663
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
11509
11664
|
type PerfectionistSortHeritageClauses = []|[{
|
|
11510
11665
|
|
|
11511
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11512
|
-
|
|
11513
11666
|
fallbackSort?: {
|
|
11514
11667
|
|
|
11515
11668
|
order?: ("asc" | "desc")
|
|
@@ -11518,6 +11671,8 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
11518
11671
|
[k: string]: unknown | undefined
|
|
11519
11672
|
}
|
|
11520
11673
|
|
|
11674
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11675
|
+
|
|
11521
11676
|
ignoreCase?: boolean
|
|
11522
11677
|
|
|
11523
11678
|
alphabet?: string
|
|
@@ -11541,8 +11696,6 @@ type PerfectionistSortHeritageClauses = []|[{
|
|
|
11541
11696
|
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
11542
11697
|
type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
11543
11698
|
|
|
11544
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11545
|
-
|
|
11546
11699
|
fallbackSort?: {
|
|
11547
11700
|
|
|
11548
11701
|
order?: ("asc" | "desc")
|
|
@@ -11551,6 +11704,8 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
11551
11704
|
[k: string]: unknown | undefined
|
|
11552
11705
|
}
|
|
11553
11706
|
|
|
11707
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11708
|
+
|
|
11554
11709
|
ignoreCase?: boolean
|
|
11555
11710
|
|
|
11556
11711
|
alphabet?: string
|
|
@@ -11630,8 +11785,6 @@ interface _PerfectionistSortImports_IsLineLength {
|
|
|
11630
11785
|
// ----- perfectionist/sort-interfaces -----
|
|
11631
11786
|
type PerfectionistSortInterfaces = {
|
|
11632
11787
|
|
|
11633
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11634
|
-
|
|
11635
11788
|
fallbackSort?: {
|
|
11636
11789
|
|
|
11637
11790
|
order?: ("asc" | "desc")
|
|
@@ -11640,6 +11793,8 @@ type PerfectionistSortInterfaces = {
|
|
|
11640
11793
|
[k: string]: unknown | undefined
|
|
11641
11794
|
}
|
|
11642
11795
|
|
|
11796
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11797
|
+
|
|
11643
11798
|
ignoreCase?: boolean
|
|
11644
11799
|
|
|
11645
11800
|
alphabet?: string
|
|
@@ -11653,19 +11808,36 @@ type PerfectionistSortInterfaces = {
|
|
|
11653
11808
|
[k: string]: (string | string[]) | undefined
|
|
11654
11809
|
} | ({
|
|
11655
11810
|
|
|
11656
|
-
|
|
11811
|
+
newlinesInside?: ("always" | "never")
|
|
11812
|
+
|
|
11813
|
+
fallbackSort?: {
|
|
11814
|
+
|
|
11815
|
+
order?: ("asc" | "desc")
|
|
11816
|
+
|
|
11817
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11818
|
+
sortBy?: ("name" | "value")
|
|
11819
|
+
[k: string]: unknown | undefined
|
|
11820
|
+
}
|
|
11657
11821
|
|
|
11658
|
-
|
|
11822
|
+
groupName?: string
|
|
11659
11823
|
|
|
11660
|
-
order?: ("
|
|
11824
|
+
order?: ("asc" | "desc")
|
|
11661
11825
|
|
|
11662
|
-
|
|
11826
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11663
11827
|
anyOf?: {
|
|
11664
11828
|
|
|
11665
11829
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
11666
11830
|
|
|
11667
11831
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
11668
11832
|
|
|
11833
|
+
elementValuePattern?: (({
|
|
11834
|
+
pattern?: string
|
|
11835
|
+
flags?: string
|
|
11836
|
+
} | string)[] | ({
|
|
11837
|
+
pattern?: string
|
|
11838
|
+
flags?: string
|
|
11839
|
+
} | string))
|
|
11840
|
+
|
|
11669
11841
|
elementNamePattern?: (({
|
|
11670
11842
|
pattern?: string
|
|
11671
11843
|
flags?: string
|
|
@@ -11673,21 +11845,39 @@ type PerfectionistSortInterfaces = {
|
|
|
11673
11845
|
pattern?: string
|
|
11674
11846
|
flags?: string
|
|
11675
11847
|
} | string))
|
|
11848
|
+
sortBy?: ("name" | "value")
|
|
11676
11849
|
}[]
|
|
11677
11850
|
} | {
|
|
11678
11851
|
|
|
11679
|
-
|
|
11852
|
+
newlinesInside?: ("always" | "never")
|
|
11853
|
+
|
|
11854
|
+
fallbackSort?: {
|
|
11855
|
+
|
|
11856
|
+
order?: ("asc" | "desc")
|
|
11857
|
+
|
|
11858
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11859
|
+
sortBy?: ("name" | "value")
|
|
11860
|
+
[k: string]: unknown | undefined
|
|
11861
|
+
}
|
|
11680
11862
|
|
|
11681
|
-
|
|
11863
|
+
groupName?: string
|
|
11682
11864
|
|
|
11683
|
-
order?: ("
|
|
11865
|
+
order?: ("asc" | "desc")
|
|
11684
11866
|
|
|
11685
|
-
|
|
11867
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11686
11868
|
|
|
11687
11869
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
11688
11870
|
|
|
11689
11871
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
11690
11872
|
|
|
11873
|
+
elementValuePattern?: (({
|
|
11874
|
+
pattern?: string
|
|
11875
|
+
flags?: string
|
|
11876
|
+
} | string)[] | ({
|
|
11877
|
+
pattern?: string
|
|
11878
|
+
flags?: string
|
|
11879
|
+
} | string))
|
|
11880
|
+
|
|
11691
11881
|
elementNamePattern?: (({
|
|
11692
11882
|
pattern?: string
|
|
11693
11883
|
flags?: string
|
|
@@ -11695,7 +11885,10 @@ type PerfectionistSortInterfaces = {
|
|
|
11695
11885
|
pattern?: string
|
|
11696
11886
|
flags?: string
|
|
11697
11887
|
} | string))
|
|
11888
|
+
sortBy?: ("name" | "value")
|
|
11698
11889
|
})[])
|
|
11890
|
+
|
|
11891
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
11699
11892
|
useConfigurationIf?: {
|
|
11700
11893
|
|
|
11701
11894
|
allNamesMatchPattern?: (({
|
|
@@ -11715,8 +11908,6 @@ type PerfectionistSortInterfaces = {
|
|
|
11715
11908
|
} | string))
|
|
11716
11909
|
}
|
|
11717
11910
|
|
|
11718
|
-
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
11719
|
-
|
|
11720
11911
|
partitionByComment?: (boolean | (({
|
|
11721
11912
|
pattern?: string
|
|
11722
11913
|
flags?: string
|
|
@@ -11751,6 +11942,7 @@ type PerfectionistSortInterfaces = {
|
|
|
11751
11942
|
pattern?: string
|
|
11752
11943
|
flags?: string
|
|
11753
11944
|
} | string))
|
|
11945
|
+
sortBy?: ("name" | "value")
|
|
11754
11946
|
|
|
11755
11947
|
groups?: (string | string[] | {
|
|
11756
11948
|
|
|
@@ -11760,8 +11952,6 @@ type PerfectionistSortInterfaces = {
|
|
|
11760
11952
|
// ----- perfectionist/sort-intersection-types -----
|
|
11761
11953
|
type PerfectionistSortIntersectionTypes = []|[{
|
|
11762
11954
|
|
|
11763
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11764
|
-
|
|
11765
11955
|
fallbackSort?: {
|
|
11766
11956
|
|
|
11767
11957
|
order?: ("asc" | "desc")
|
|
@@ -11770,6 +11960,8 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
11770
11960
|
[k: string]: unknown | undefined
|
|
11771
11961
|
}
|
|
11772
11962
|
|
|
11963
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11964
|
+
|
|
11773
11965
|
ignoreCase?: boolean
|
|
11774
11966
|
|
|
11775
11967
|
alphabet?: string
|
|
@@ -11815,8 +12007,6 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
11815
12007
|
// ----- perfectionist/sort-jsx-props -----
|
|
11816
12008
|
type PerfectionistSortJsxProps = {
|
|
11817
12009
|
|
|
11818
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11819
|
-
|
|
11820
12010
|
fallbackSort?: {
|
|
11821
12011
|
|
|
11822
12012
|
order?: ("asc" | "desc")
|
|
@@ -11825,6 +12015,8 @@ type PerfectionistSortJsxProps = {
|
|
|
11825
12015
|
[k: string]: unknown | undefined
|
|
11826
12016
|
}
|
|
11827
12017
|
|
|
12018
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12019
|
+
|
|
11828
12020
|
ignoreCase?: boolean
|
|
11829
12021
|
|
|
11830
12022
|
alphabet?: string
|
|
@@ -11834,6 +12026,85 @@ type PerfectionistSortJsxProps = {
|
|
|
11834
12026
|
order?: ("asc" | "desc")
|
|
11835
12027
|
|
|
11836
12028
|
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12029
|
+
customGroups?: ({
|
|
12030
|
+
[k: string]: (string | string[]) | undefined
|
|
12031
|
+
} | ({
|
|
12032
|
+
|
|
12033
|
+
newlinesInside?: ("always" | "never")
|
|
12034
|
+
|
|
12035
|
+
fallbackSort?: {
|
|
12036
|
+
|
|
12037
|
+
order?: ("asc" | "desc")
|
|
12038
|
+
|
|
12039
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12040
|
+
[k: string]: unknown | undefined
|
|
12041
|
+
}
|
|
12042
|
+
|
|
12043
|
+
groupName?: string
|
|
12044
|
+
|
|
12045
|
+
order?: ("asc" | "desc")
|
|
12046
|
+
|
|
12047
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12048
|
+
anyOf?: {
|
|
12049
|
+
|
|
12050
|
+
modifiers?: ("shorthand" | "multiline")[]
|
|
12051
|
+
|
|
12052
|
+
selector?: ("multiline" | "prop" | "shorthand")
|
|
12053
|
+
|
|
12054
|
+
elementValuePattern?: (({
|
|
12055
|
+
pattern?: string
|
|
12056
|
+
flags?: string
|
|
12057
|
+
} | string)[] | ({
|
|
12058
|
+
pattern?: string
|
|
12059
|
+
flags?: string
|
|
12060
|
+
} | string))
|
|
12061
|
+
|
|
12062
|
+
elementNamePattern?: (({
|
|
12063
|
+
pattern?: string
|
|
12064
|
+
flags?: string
|
|
12065
|
+
} | string)[] | ({
|
|
12066
|
+
pattern?: string
|
|
12067
|
+
flags?: string
|
|
12068
|
+
} | string))
|
|
12069
|
+
}[]
|
|
12070
|
+
} | {
|
|
12071
|
+
|
|
12072
|
+
newlinesInside?: ("always" | "never")
|
|
12073
|
+
|
|
12074
|
+
fallbackSort?: {
|
|
12075
|
+
|
|
12076
|
+
order?: ("asc" | "desc")
|
|
12077
|
+
|
|
12078
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12079
|
+
[k: string]: unknown | undefined
|
|
12080
|
+
}
|
|
12081
|
+
|
|
12082
|
+
groupName?: string
|
|
12083
|
+
|
|
12084
|
+
order?: ("asc" | "desc")
|
|
12085
|
+
|
|
12086
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12087
|
+
|
|
12088
|
+
modifiers?: ("shorthand" | "multiline")[]
|
|
12089
|
+
|
|
12090
|
+
selector?: ("multiline" | "prop" | "shorthand")
|
|
12091
|
+
|
|
12092
|
+
elementValuePattern?: (({
|
|
12093
|
+
pattern?: string
|
|
12094
|
+
flags?: string
|
|
12095
|
+
} | string)[] | ({
|
|
12096
|
+
pattern?: string
|
|
12097
|
+
flags?: string
|
|
12098
|
+
} | string))
|
|
12099
|
+
|
|
12100
|
+
elementNamePattern?: (({
|
|
12101
|
+
pattern?: string
|
|
12102
|
+
flags?: string
|
|
12103
|
+
} | string)[] | ({
|
|
12104
|
+
pattern?: string
|
|
12105
|
+
flags?: string
|
|
12106
|
+
} | string))
|
|
12107
|
+
})[])
|
|
11837
12108
|
useConfigurationIf?: {
|
|
11838
12109
|
|
|
11839
12110
|
allNamesMatchPattern?: (({
|
|
@@ -11857,10 +12128,6 @@ type PerfectionistSortJsxProps = {
|
|
|
11857
12128
|
|
|
11858
12129
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11859
12130
|
|
|
11860
|
-
customGroups?: {
|
|
11861
|
-
[k: string]: (string | string[]) | undefined
|
|
11862
|
-
}
|
|
11863
|
-
|
|
11864
12131
|
ignorePattern?: (({
|
|
11865
12132
|
pattern?: string
|
|
11866
12133
|
flags?: string
|
|
@@ -11877,8 +12144,6 @@ type PerfectionistSortJsxProps = {
|
|
|
11877
12144
|
// ----- perfectionist/sort-maps -----
|
|
11878
12145
|
type PerfectionistSortMaps = {
|
|
11879
12146
|
|
|
11880
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11881
|
-
|
|
11882
12147
|
fallbackSort?: {
|
|
11883
12148
|
|
|
11884
12149
|
order?: ("asc" | "desc")
|
|
@@ -11887,6 +12152,8 @@ type PerfectionistSortMaps = {
|
|
|
11887
12152
|
[k: string]: unknown | undefined
|
|
11888
12153
|
}
|
|
11889
12154
|
|
|
12155
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12156
|
+
|
|
11890
12157
|
ignoreCase?: boolean
|
|
11891
12158
|
|
|
11892
12159
|
alphabet?: string
|
|
@@ -11899,13 +12166,21 @@ type PerfectionistSortMaps = {
|
|
|
11899
12166
|
|
|
11900
12167
|
customGroups?: ({
|
|
11901
12168
|
|
|
11902
|
-
|
|
12169
|
+
newlinesInside?: ("always" | "never")
|
|
11903
12170
|
|
|
11904
|
-
|
|
12171
|
+
fallbackSort?: {
|
|
12172
|
+
|
|
12173
|
+
order?: ("asc" | "desc")
|
|
12174
|
+
|
|
12175
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12176
|
+
[k: string]: unknown | undefined
|
|
12177
|
+
}
|
|
11905
12178
|
|
|
11906
|
-
|
|
12179
|
+
groupName?: string
|
|
11907
12180
|
|
|
11908
|
-
|
|
12181
|
+
order?: ("asc" | "desc")
|
|
12182
|
+
|
|
12183
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11909
12184
|
anyOf?: {
|
|
11910
12185
|
|
|
11911
12186
|
elementNamePattern?: (({
|
|
@@ -11918,13 +12193,21 @@ type PerfectionistSortMaps = {
|
|
|
11918
12193
|
}[]
|
|
11919
12194
|
} | {
|
|
11920
12195
|
|
|
11921
|
-
|
|
12196
|
+
newlinesInside?: ("always" | "never")
|
|
12197
|
+
|
|
12198
|
+
fallbackSort?: {
|
|
12199
|
+
|
|
12200
|
+
order?: ("asc" | "desc")
|
|
12201
|
+
|
|
12202
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12203
|
+
[k: string]: unknown | undefined
|
|
12204
|
+
}
|
|
11922
12205
|
|
|
11923
|
-
|
|
12206
|
+
groupName?: string
|
|
11924
12207
|
|
|
11925
|
-
order?: ("
|
|
12208
|
+
order?: ("asc" | "desc")
|
|
11926
12209
|
|
|
11927
|
-
|
|
12210
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11928
12211
|
|
|
11929
12212
|
elementNamePattern?: (({
|
|
11930
12213
|
pattern?: string
|
|
@@ -11980,8 +12263,6 @@ type PerfectionistSortMaps = {
|
|
|
11980
12263
|
// ----- perfectionist/sort-modules -----
|
|
11981
12264
|
type PerfectionistSortModules = []|[{
|
|
11982
12265
|
|
|
11983
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11984
|
-
|
|
11985
12266
|
fallbackSort?: {
|
|
11986
12267
|
|
|
11987
12268
|
order?: ("asc" | "desc")
|
|
@@ -11990,6 +12271,8 @@ type PerfectionistSortModules = []|[{
|
|
|
11990
12271
|
[k: string]: unknown | undefined
|
|
11991
12272
|
}
|
|
11992
12273
|
|
|
12274
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12275
|
+
|
|
11993
12276
|
ignoreCase?: boolean
|
|
11994
12277
|
|
|
11995
12278
|
alphabet?: string
|
|
@@ -12002,13 +12285,21 @@ type PerfectionistSortModules = []|[{
|
|
|
12002
12285
|
|
|
12003
12286
|
customGroups?: ({
|
|
12004
12287
|
|
|
12005
|
-
|
|
12288
|
+
newlinesInside?: ("always" | "never")
|
|
12289
|
+
|
|
12290
|
+
fallbackSort?: {
|
|
12291
|
+
|
|
12292
|
+
order?: ("asc" | "desc")
|
|
12293
|
+
|
|
12294
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12295
|
+
[k: string]: unknown | undefined
|
|
12296
|
+
}
|
|
12006
12297
|
|
|
12007
|
-
|
|
12298
|
+
groupName?: string
|
|
12008
12299
|
|
|
12009
|
-
order?: ("
|
|
12300
|
+
order?: ("asc" | "desc")
|
|
12010
12301
|
|
|
12011
|
-
|
|
12302
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12012
12303
|
anyOf?: {
|
|
12013
12304
|
|
|
12014
12305
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
@@ -12033,13 +12324,21 @@ type PerfectionistSortModules = []|[{
|
|
|
12033
12324
|
}[]
|
|
12034
12325
|
} | {
|
|
12035
12326
|
|
|
12036
|
-
|
|
12327
|
+
newlinesInside?: ("always" | "never")
|
|
12037
12328
|
|
|
12038
|
-
|
|
12329
|
+
fallbackSort?: {
|
|
12330
|
+
|
|
12331
|
+
order?: ("asc" | "desc")
|
|
12332
|
+
|
|
12333
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12334
|
+
[k: string]: unknown | undefined
|
|
12335
|
+
}
|
|
12039
12336
|
|
|
12040
|
-
|
|
12337
|
+
groupName?: string
|
|
12041
12338
|
|
|
12042
|
-
|
|
12339
|
+
order?: ("asc" | "desc")
|
|
12340
|
+
|
|
12341
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12043
12342
|
|
|
12044
12343
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
12045
12344
|
|
|
@@ -12097,8 +12396,6 @@ type PerfectionistSortModules = []|[{
|
|
|
12097
12396
|
// ----- perfectionist/sort-named-exports -----
|
|
12098
12397
|
type PerfectionistSortNamedExports = []|[{
|
|
12099
12398
|
|
|
12100
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12101
|
-
|
|
12102
12399
|
fallbackSort?: {
|
|
12103
12400
|
|
|
12104
12401
|
order?: ("asc" | "desc")
|
|
@@ -12107,6 +12404,8 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
12107
12404
|
[k: string]: unknown | undefined
|
|
12108
12405
|
}
|
|
12109
12406
|
|
|
12407
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12408
|
+
|
|
12110
12409
|
ignoreCase?: boolean
|
|
12111
12410
|
|
|
12112
12411
|
alphabet?: string
|
|
@@ -12149,8 +12448,6 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
12149
12448
|
// ----- perfectionist/sort-named-imports -----
|
|
12150
12449
|
type PerfectionistSortNamedImports = []|[{
|
|
12151
12450
|
|
|
12152
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12153
|
-
|
|
12154
12451
|
fallbackSort?: {
|
|
12155
12452
|
|
|
12156
12453
|
order?: ("asc" | "desc")
|
|
@@ -12159,6 +12456,8 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
12159
12456
|
[k: string]: unknown | undefined
|
|
12160
12457
|
}
|
|
12161
12458
|
|
|
12459
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12460
|
+
|
|
12162
12461
|
ignoreCase?: boolean
|
|
12163
12462
|
|
|
12164
12463
|
alphabet?: string
|
|
@@ -12201,8 +12500,6 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
12201
12500
|
// ----- perfectionist/sort-object-types -----
|
|
12202
12501
|
type PerfectionistSortObjectTypes = {
|
|
12203
12502
|
|
|
12204
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12205
|
-
|
|
12206
12503
|
fallbackSort?: {
|
|
12207
12504
|
|
|
12208
12505
|
order?: ("asc" | "desc")
|
|
@@ -12211,6 +12508,8 @@ type PerfectionistSortObjectTypes = {
|
|
|
12211
12508
|
[k: string]: unknown | undefined
|
|
12212
12509
|
}
|
|
12213
12510
|
|
|
12511
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12512
|
+
|
|
12214
12513
|
ignoreCase?: boolean
|
|
12215
12514
|
|
|
12216
12515
|
alphabet?: string
|
|
@@ -12224,19 +12523,36 @@ type PerfectionistSortObjectTypes = {
|
|
|
12224
12523
|
[k: string]: (string | string[]) | undefined
|
|
12225
12524
|
} | ({
|
|
12226
12525
|
|
|
12227
|
-
|
|
12526
|
+
newlinesInside?: ("always" | "never")
|
|
12228
12527
|
|
|
12229
|
-
|
|
12528
|
+
fallbackSort?: {
|
|
12529
|
+
|
|
12530
|
+
order?: ("asc" | "desc")
|
|
12531
|
+
|
|
12532
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12533
|
+
sortBy?: ("name" | "value")
|
|
12534
|
+
[k: string]: unknown | undefined
|
|
12535
|
+
}
|
|
12230
12536
|
|
|
12231
|
-
|
|
12537
|
+
groupName?: string
|
|
12232
12538
|
|
|
12233
|
-
|
|
12539
|
+
order?: ("asc" | "desc")
|
|
12540
|
+
|
|
12541
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12234
12542
|
anyOf?: {
|
|
12235
12543
|
|
|
12236
12544
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
12237
12545
|
|
|
12238
12546
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
12239
12547
|
|
|
12548
|
+
elementValuePattern?: (({
|
|
12549
|
+
pattern?: string
|
|
12550
|
+
flags?: string
|
|
12551
|
+
} | string)[] | ({
|
|
12552
|
+
pattern?: string
|
|
12553
|
+
flags?: string
|
|
12554
|
+
} | string))
|
|
12555
|
+
|
|
12240
12556
|
elementNamePattern?: (({
|
|
12241
12557
|
pattern?: string
|
|
12242
12558
|
flags?: string
|
|
@@ -12244,21 +12560,39 @@ type PerfectionistSortObjectTypes = {
|
|
|
12244
12560
|
pattern?: string
|
|
12245
12561
|
flags?: string
|
|
12246
12562
|
} | string))
|
|
12563
|
+
sortBy?: ("name" | "value")
|
|
12247
12564
|
}[]
|
|
12248
12565
|
} | {
|
|
12249
12566
|
|
|
12250
|
-
|
|
12567
|
+
newlinesInside?: ("always" | "never")
|
|
12251
12568
|
|
|
12252
|
-
|
|
12569
|
+
fallbackSort?: {
|
|
12570
|
+
|
|
12571
|
+
order?: ("asc" | "desc")
|
|
12572
|
+
|
|
12573
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12574
|
+
sortBy?: ("name" | "value")
|
|
12575
|
+
[k: string]: unknown | undefined
|
|
12576
|
+
}
|
|
12253
12577
|
|
|
12254
|
-
|
|
12578
|
+
groupName?: string
|
|
12255
12579
|
|
|
12256
|
-
|
|
12580
|
+
order?: ("asc" | "desc")
|
|
12581
|
+
|
|
12582
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12257
12583
|
|
|
12258
12584
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
12259
12585
|
|
|
12260
12586
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
12261
12587
|
|
|
12588
|
+
elementValuePattern?: (({
|
|
12589
|
+
pattern?: string
|
|
12590
|
+
flags?: string
|
|
12591
|
+
} | string)[] | ({
|
|
12592
|
+
pattern?: string
|
|
12593
|
+
flags?: string
|
|
12594
|
+
} | string))
|
|
12595
|
+
|
|
12262
12596
|
elementNamePattern?: (({
|
|
12263
12597
|
pattern?: string
|
|
12264
12598
|
flags?: string
|
|
@@ -12266,7 +12600,10 @@ type PerfectionistSortObjectTypes = {
|
|
|
12266
12600
|
pattern?: string
|
|
12267
12601
|
flags?: string
|
|
12268
12602
|
} | string))
|
|
12603
|
+
sortBy?: ("name" | "value")
|
|
12269
12604
|
})[])
|
|
12605
|
+
|
|
12606
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
12270
12607
|
useConfigurationIf?: {
|
|
12271
12608
|
|
|
12272
12609
|
allNamesMatchPattern?: (({
|
|
@@ -12286,8 +12623,6 @@ type PerfectionistSortObjectTypes = {
|
|
|
12286
12623
|
} | string))
|
|
12287
12624
|
}
|
|
12288
12625
|
|
|
12289
|
-
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
12290
|
-
|
|
12291
12626
|
partitionByComment?: (boolean | (({
|
|
12292
12627
|
pattern?: string
|
|
12293
12628
|
flags?: string
|
|
@@ -12322,6 +12657,7 @@ type PerfectionistSortObjectTypes = {
|
|
|
12322
12657
|
pattern?: string
|
|
12323
12658
|
flags?: string
|
|
12324
12659
|
} | string))
|
|
12660
|
+
sortBy?: ("name" | "value")
|
|
12325
12661
|
|
|
12326
12662
|
groups?: (string | string[] | {
|
|
12327
12663
|
|
|
@@ -12331,8 +12667,6 @@ type PerfectionistSortObjectTypes = {
|
|
|
12331
12667
|
// ----- perfectionist/sort-objects -----
|
|
12332
12668
|
type PerfectionistSortObjects = {
|
|
12333
12669
|
|
|
12334
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12335
|
-
|
|
12336
12670
|
fallbackSort?: {
|
|
12337
12671
|
|
|
12338
12672
|
order?: ("asc" | "desc")
|
|
@@ -12341,6 +12675,8 @@ type PerfectionistSortObjects = {
|
|
|
12341
12675
|
[k: string]: unknown | undefined
|
|
12342
12676
|
}
|
|
12343
12677
|
|
|
12678
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12679
|
+
|
|
12344
12680
|
ignoreCase?: boolean
|
|
12345
12681
|
|
|
12346
12682
|
alphabet?: string
|
|
@@ -12359,13 +12695,21 @@ type PerfectionistSortObjects = {
|
|
|
12359
12695
|
[k: string]: (string | string[]) | undefined
|
|
12360
12696
|
} | ({
|
|
12361
12697
|
|
|
12362
|
-
|
|
12698
|
+
newlinesInside?: ("always" | "never")
|
|
12363
12699
|
|
|
12364
|
-
|
|
12700
|
+
fallbackSort?: {
|
|
12701
|
+
|
|
12702
|
+
order?: ("asc" | "desc")
|
|
12703
|
+
|
|
12704
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12705
|
+
[k: string]: unknown | undefined
|
|
12706
|
+
}
|
|
12365
12707
|
|
|
12366
|
-
|
|
12708
|
+
groupName?: string
|
|
12367
12709
|
|
|
12368
|
-
|
|
12710
|
+
order?: ("asc" | "desc")
|
|
12711
|
+
|
|
12712
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12369
12713
|
anyOf?: {
|
|
12370
12714
|
|
|
12371
12715
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
@@ -12390,13 +12734,21 @@ type PerfectionistSortObjects = {
|
|
|
12390
12734
|
}[]
|
|
12391
12735
|
} | {
|
|
12392
12736
|
|
|
12393
|
-
|
|
12737
|
+
newlinesInside?: ("always" | "never")
|
|
12738
|
+
|
|
12739
|
+
fallbackSort?: {
|
|
12740
|
+
|
|
12741
|
+
order?: ("asc" | "desc")
|
|
12742
|
+
|
|
12743
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12744
|
+
[k: string]: unknown | undefined
|
|
12745
|
+
}
|
|
12394
12746
|
|
|
12395
|
-
|
|
12747
|
+
groupName?: string
|
|
12396
12748
|
|
|
12397
|
-
order?: ("
|
|
12749
|
+
order?: ("asc" | "desc")
|
|
12398
12750
|
|
|
12399
|
-
|
|
12751
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12400
12752
|
|
|
12401
12753
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
12402
12754
|
|
|
@@ -12486,8 +12838,6 @@ type PerfectionistSortObjects = {
|
|
|
12486
12838
|
// ----- perfectionist/sort-sets -----
|
|
12487
12839
|
type PerfectionistSortSets = {
|
|
12488
12840
|
|
|
12489
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12490
|
-
|
|
12491
12841
|
fallbackSort?: {
|
|
12492
12842
|
|
|
12493
12843
|
order?: ("asc" | "desc")
|
|
@@ -12496,6 +12846,8 @@ type PerfectionistSortSets = {
|
|
|
12496
12846
|
[k: string]: unknown | undefined
|
|
12497
12847
|
}
|
|
12498
12848
|
|
|
12849
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12850
|
+
|
|
12499
12851
|
ignoreCase?: boolean
|
|
12500
12852
|
|
|
12501
12853
|
alphabet?: string
|
|
@@ -12510,13 +12862,21 @@ type PerfectionistSortSets = {
|
|
|
12510
12862
|
|
|
12511
12863
|
customGroups?: ({
|
|
12512
12864
|
|
|
12513
|
-
|
|
12865
|
+
newlinesInside?: ("always" | "never")
|
|
12866
|
+
|
|
12867
|
+
fallbackSort?: {
|
|
12868
|
+
|
|
12869
|
+
order?: ("asc" | "desc")
|
|
12870
|
+
|
|
12871
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12872
|
+
[k: string]: unknown | undefined
|
|
12873
|
+
}
|
|
12514
12874
|
|
|
12515
|
-
|
|
12875
|
+
groupName?: string
|
|
12516
12876
|
|
|
12517
|
-
order?: ("
|
|
12877
|
+
order?: ("asc" | "desc")
|
|
12518
12878
|
|
|
12519
|
-
|
|
12879
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12520
12880
|
anyOf?: {
|
|
12521
12881
|
|
|
12522
12882
|
selector?: ("literal" | "spread")
|
|
@@ -12531,13 +12891,21 @@ type PerfectionistSortSets = {
|
|
|
12531
12891
|
}[]
|
|
12532
12892
|
} | {
|
|
12533
12893
|
|
|
12534
|
-
|
|
12894
|
+
newlinesInside?: ("always" | "never")
|
|
12535
12895
|
|
|
12536
|
-
|
|
12896
|
+
fallbackSort?: {
|
|
12897
|
+
|
|
12898
|
+
order?: ("asc" | "desc")
|
|
12899
|
+
|
|
12900
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12901
|
+
[k: string]: unknown | undefined
|
|
12902
|
+
}
|
|
12537
12903
|
|
|
12538
|
-
|
|
12904
|
+
groupName?: string
|
|
12539
12905
|
|
|
12540
|
-
|
|
12906
|
+
order?: ("asc" | "desc")
|
|
12907
|
+
|
|
12908
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12541
12909
|
|
|
12542
12910
|
selector?: ("literal" | "spread")
|
|
12543
12911
|
|
|
@@ -12595,8 +12963,6 @@ type PerfectionistSortSets = {
|
|
|
12595
12963
|
// ----- perfectionist/sort-switch-case -----
|
|
12596
12964
|
type PerfectionistSortSwitchCase = []|[{
|
|
12597
12965
|
|
|
12598
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12599
|
-
|
|
12600
12966
|
fallbackSort?: {
|
|
12601
12967
|
|
|
12602
12968
|
order?: ("asc" | "desc")
|
|
@@ -12605,6 +12971,8 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
12605
12971
|
[k: string]: unknown | undefined
|
|
12606
12972
|
}
|
|
12607
12973
|
|
|
12974
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12975
|
+
|
|
12608
12976
|
ignoreCase?: boolean
|
|
12609
12977
|
|
|
12610
12978
|
alphabet?: string
|
|
@@ -12618,8 +12986,6 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
12618
12986
|
// ----- perfectionist/sort-union-types -----
|
|
12619
12987
|
type PerfectionistSortUnionTypes = []|[{
|
|
12620
12988
|
|
|
12621
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12622
|
-
|
|
12623
12989
|
fallbackSort?: {
|
|
12624
12990
|
|
|
12625
12991
|
order?: ("asc" | "desc")
|
|
@@ -12628,6 +12994,8 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
12628
12994
|
[k: string]: unknown | undefined
|
|
12629
12995
|
}
|
|
12630
12996
|
|
|
12997
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12998
|
+
|
|
12631
12999
|
ignoreCase?: boolean
|
|
12632
13000
|
|
|
12633
13001
|
alphabet?: string
|
|
@@ -12673,8 +13041,6 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
12673
13041
|
// ----- perfectionist/sort-variable-declarations -----
|
|
12674
13042
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
12675
13043
|
|
|
12676
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
12677
|
-
|
|
12678
13044
|
fallbackSort?: {
|
|
12679
13045
|
|
|
12680
13046
|
order?: ("asc" | "desc")
|
|
@@ -12683,6 +13049,8 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
12683
13049
|
[k: string]: unknown | undefined
|
|
12684
13050
|
}
|
|
12685
13051
|
|
|
13052
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
13053
|
+
|
|
12686
13054
|
ignoreCase?: boolean
|
|
12687
13055
|
|
|
12688
13056
|
alphabet?: string
|
|
@@ -15433,6 +15801,8 @@ type TsPreferNullishCoalescing = []|[{
|
|
|
15433
15801
|
|
|
15434
15802
|
ignoreConditionalTests?: boolean
|
|
15435
15803
|
|
|
15804
|
+
ignoreIfStatements?: boolean
|
|
15805
|
+
|
|
15436
15806
|
ignoreMixedLogicalExpressions?: boolean
|
|
15437
15807
|
|
|
15438
15808
|
ignorePrimitives?: ({
|