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