@rotki/eslint-config 3.6.0 → 3.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +335 -321
- package/dist/index.d.cts +794 -266
- package/dist/index.d.ts +794 -266
- package/dist/index.js +332 -318
- package/package.json +40 -40
package/dist/index.d.cts
CHANGED
|
@@ -126,10 +126,15 @@ interface RuleOptions {
|
|
|
126
126
|
*/
|
|
127
127
|
'@rotki/no-deprecated-components'?: Linter.RuleEntry<RotkiNoDeprecatedComponents>
|
|
128
128
|
/**
|
|
129
|
-
*
|
|
129
|
+
* Replaces deprecated props with their replacements
|
|
130
130
|
* @see https://rotki.github.io/eslint-plugin/rules/no-deprecated-props
|
|
131
131
|
*/
|
|
132
132
|
'@rotki/no-deprecated-props'?: Linter.RuleEntry<[]>
|
|
133
|
+
/**
|
|
134
|
+
* Checks and replaces .ts extension in import statements.
|
|
135
|
+
* @see https://rotki.github.io/eslint-plugin/rules/no-dot-ts-imports
|
|
136
|
+
*/
|
|
137
|
+
'@rotki/no-dot-ts-imports'?: Linter.RuleEntry<[]>
|
|
133
138
|
/**
|
|
134
139
|
* Reports and replaces imports of @rotki/ui-library-compat with @rotki/ui-library
|
|
135
140
|
* @see https://rotki.github.io/eslint-plugin/rules/no-legacy-library-import
|
|
@@ -765,7 +770,7 @@ interface RuleOptions {
|
|
|
765
770
|
* Disallow using code marked as `@deprecated`
|
|
766
771
|
* @see https://typescript-eslint.io/rules/no-deprecated
|
|
767
772
|
*/
|
|
768
|
-
'@typescript-eslint/no-deprecated'?: Linter.RuleEntry<
|
|
773
|
+
'@typescript-eslint/no-deprecated'?: Linter.RuleEntry<TypescriptEslintNoDeprecated>
|
|
769
774
|
/**
|
|
770
775
|
* Disallow duplicate class members
|
|
771
776
|
* @see https://typescript-eslint.io/rules/no-dupe-class-members
|
|
@@ -883,6 +888,11 @@ interface RuleOptions {
|
|
|
883
888
|
* @see https://typescript-eslint.io/rules/no-misused-promises
|
|
884
889
|
*/
|
|
885
890
|
'@typescript-eslint/no-misused-promises'?: Linter.RuleEntry<TypescriptEslintNoMisusedPromises>
|
|
891
|
+
/**
|
|
892
|
+
* Disallow using the spread operator when it might cause unexpected behavior
|
|
893
|
+
* @see https://typescript-eslint.io/rules/no-misused-spread
|
|
894
|
+
*/
|
|
895
|
+
'@typescript-eslint/no-misused-spread'?: Linter.RuleEntry<TypescriptEslintNoMisusedSpread>
|
|
886
896
|
/**
|
|
887
897
|
* Disallow enums from having both number and string members
|
|
888
898
|
* @see https://typescript-eslint.io/rules/no-mixed-enums
|
|
@@ -1081,7 +1091,7 @@ interface RuleOptions {
|
|
|
1081
1091
|
*/
|
|
1082
1092
|
'@typescript-eslint/no-wrapper-object-types'?: Linter.RuleEntry<[]>
|
|
1083
1093
|
/**
|
|
1084
|
-
* Enforce non-null assertions over explicit type
|
|
1094
|
+
* Enforce non-null assertions over explicit type assertions
|
|
1085
1095
|
* @see https://typescript-eslint.io/rules/non-nullable-type-assertion-style
|
|
1086
1096
|
*/
|
|
1087
1097
|
'@typescript-eslint/non-nullable-type-assertion-style'?: Linter.RuleEntry<[]>
|
|
@@ -1166,7 +1176,7 @@ interface RuleOptions {
|
|
|
1166
1176
|
*/
|
|
1167
1177
|
'@typescript-eslint/prefer-readonly-parameter-types'?: Linter.RuleEntry<TypescriptEslintPreferReadonlyParameterTypes>
|
|
1168
1178
|
/**
|
|
1169
|
-
* Enforce using type parameter when calling `Array#reduce` instead of
|
|
1179
|
+
* Enforce using type parameter when calling `Array#reduce` instead of using a type assertion
|
|
1170
1180
|
* @see https://typescript-eslint.io/rules/prefer-reduce-type-parameter
|
|
1171
1181
|
*/
|
|
1172
1182
|
'@typescript-eslint/prefer-reduce-type-parameter'?: Linter.RuleEntry<[]>
|
|
@@ -1422,233 +1432,233 @@ interface RuleOptions {
|
|
|
1422
1432
|
'format/prettier'?: Linter.RuleEntry<FormatPrettier>
|
|
1423
1433
|
/**
|
|
1424
1434
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
1425
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1435
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/consistent-type-specifier-style.md
|
|
1426
1436
|
*/
|
|
1427
1437
|
'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
|
|
1428
1438
|
/**
|
|
1429
1439
|
* Ensure a default export is present, given a default import.
|
|
1430
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1440
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/default.md
|
|
1431
1441
|
*/
|
|
1432
1442
|
'import/default'?: Linter.RuleEntry<[]>
|
|
1433
1443
|
/**
|
|
1434
1444
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
1435
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1445
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/dynamic-import-chunkname.md
|
|
1436
1446
|
*/
|
|
1437
1447
|
'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
|
|
1438
1448
|
/**
|
|
1439
1449
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
1440
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1450
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/export.md
|
|
1441
1451
|
*/
|
|
1442
1452
|
'import/export'?: Linter.RuleEntry<[]>
|
|
1443
1453
|
/**
|
|
1444
1454
|
* Ensure all exports appear after other statements.
|
|
1445
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1455
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/exports-last.md
|
|
1446
1456
|
*/
|
|
1447
1457
|
'import/exports-last'?: Linter.RuleEntry<[]>
|
|
1448
1458
|
/**
|
|
1449
1459
|
* Ensure consistent use of file extension within the import path.
|
|
1450
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1460
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/extensions.md
|
|
1451
1461
|
*/
|
|
1452
1462
|
'import/extensions'?: Linter.RuleEntry<ImportExtensions>
|
|
1453
1463
|
/**
|
|
1454
1464
|
* Ensure all imports appear before other statements.
|
|
1455
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1465
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/first.md
|
|
1456
1466
|
*/
|
|
1457
1467
|
'import/first'?: Linter.RuleEntry<ImportFirst>
|
|
1458
1468
|
/**
|
|
1459
1469
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
1460
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1470
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/group-exports.md
|
|
1461
1471
|
*/
|
|
1462
1472
|
'import/group-exports'?: Linter.RuleEntry<[]>
|
|
1463
1473
|
/**
|
|
1464
1474
|
* Replaced by `import-x/first`.
|
|
1465
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1475
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/imports-first.md
|
|
1466
1476
|
* @deprecated
|
|
1467
1477
|
*/
|
|
1468
1478
|
'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
|
|
1469
1479
|
/**
|
|
1470
1480
|
* Enforce the maximum number of dependencies a module can have.
|
|
1471
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1481
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/max-dependencies.md
|
|
1472
1482
|
*/
|
|
1473
1483
|
'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
|
|
1474
1484
|
/**
|
|
1475
1485
|
* Ensure named imports correspond to a named export in the remote file.
|
|
1476
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1486
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/named.md
|
|
1477
1487
|
*/
|
|
1478
1488
|
'import/named'?: Linter.RuleEntry<ImportNamed>
|
|
1479
1489
|
/**
|
|
1480
1490
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
1481
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1491
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/namespace.md
|
|
1482
1492
|
*/
|
|
1483
1493
|
'import/namespace'?: Linter.RuleEntry<ImportNamespace>
|
|
1484
1494
|
/**
|
|
1485
1495
|
* Enforce a newline after import statements.
|
|
1486
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1496
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/newline-after-import.md
|
|
1487
1497
|
*/
|
|
1488
1498
|
'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
|
|
1489
1499
|
/**
|
|
1490
1500
|
* Forbid import of modules using absolute paths.
|
|
1491
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1501
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-absolute-path.md
|
|
1492
1502
|
*/
|
|
1493
1503
|
'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
|
|
1494
1504
|
/**
|
|
1495
1505
|
* Forbid AMD `require` and `define` calls.
|
|
1496
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1506
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-amd.md
|
|
1497
1507
|
*/
|
|
1498
1508
|
'import/no-amd'?: Linter.RuleEntry<[]>
|
|
1499
1509
|
/**
|
|
1500
1510
|
* Forbid anonymous values as default exports.
|
|
1501
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1511
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-anonymous-default-export.md
|
|
1502
1512
|
*/
|
|
1503
1513
|
'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
|
|
1504
1514
|
/**
|
|
1505
1515
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
1506
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1516
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-commonjs.md
|
|
1507
1517
|
*/
|
|
1508
1518
|
'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
|
|
1509
1519
|
/**
|
|
1510
1520
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
1511
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1521
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-cycle.md
|
|
1512
1522
|
*/
|
|
1513
1523
|
'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
|
|
1514
1524
|
/**
|
|
1515
1525
|
* Forbid default exports.
|
|
1516
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1526
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-default-export.md
|
|
1517
1527
|
*/
|
|
1518
1528
|
'import/no-default-export'?: Linter.RuleEntry<[]>
|
|
1519
1529
|
/**
|
|
1520
1530
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
1521
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1531
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-deprecated.md
|
|
1522
1532
|
*/
|
|
1523
1533
|
'import/no-deprecated'?: Linter.RuleEntry<[]>
|
|
1524
1534
|
/**
|
|
1525
1535
|
* Forbid repeated import of the same module in multiple places.
|
|
1526
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1536
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-duplicates.md
|
|
1527
1537
|
*/
|
|
1528
1538
|
'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
|
|
1529
1539
|
/**
|
|
1530
1540
|
* Forbid `require()` calls with expressions.
|
|
1531
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1541
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-dynamic-require.md
|
|
1532
1542
|
*/
|
|
1533
1543
|
'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
|
|
1534
1544
|
/**
|
|
1535
1545
|
* Forbid empty named import blocks.
|
|
1536
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1546
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-empty-named-blocks.md
|
|
1537
1547
|
*/
|
|
1538
1548
|
'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
1539
1549
|
/**
|
|
1540
1550
|
* Forbid the use of extraneous packages.
|
|
1541
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1551
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-extraneous-dependencies.md
|
|
1542
1552
|
*/
|
|
1543
1553
|
'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
|
|
1544
1554
|
/**
|
|
1545
1555
|
* Forbid import statements with CommonJS module.exports.
|
|
1546
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1556
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-import-module-exports.md
|
|
1547
1557
|
*/
|
|
1548
1558
|
'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
|
|
1549
1559
|
/**
|
|
1550
1560
|
* Forbid importing the submodules of other modules.
|
|
1551
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1561
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-internal-modules.md
|
|
1552
1562
|
*/
|
|
1553
1563
|
'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
|
|
1554
1564
|
/**
|
|
1555
1565
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
1556
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1566
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-mutable-exports.md
|
|
1557
1567
|
*/
|
|
1558
1568
|
'import/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
1559
1569
|
/**
|
|
1560
1570
|
* Forbid use of exported name as identifier of default export.
|
|
1561
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1571
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default.md
|
|
1562
1572
|
*/
|
|
1563
1573
|
'import/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
1564
1574
|
/**
|
|
1565
1575
|
* Forbid use of exported name as property of default export.
|
|
1566
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1576
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default-member.md
|
|
1567
1577
|
*/
|
|
1568
1578
|
'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
1569
1579
|
/**
|
|
1570
1580
|
* Forbid named default exports.
|
|
1571
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1581
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-default.md
|
|
1572
1582
|
*/
|
|
1573
1583
|
'import/no-named-default'?: Linter.RuleEntry<[]>
|
|
1574
1584
|
/**
|
|
1575
1585
|
* Forbid named exports.
|
|
1576
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1586
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-export.md
|
|
1577
1587
|
*/
|
|
1578
1588
|
'import/no-named-export'?: Linter.RuleEntry<[]>
|
|
1579
1589
|
/**
|
|
1580
1590
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
1581
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1591
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-namespace.md
|
|
1582
1592
|
*/
|
|
1583
1593
|
'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
|
|
1584
1594
|
/**
|
|
1585
1595
|
* Forbid Node.js builtin modules.
|
|
1586
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1596
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-nodejs-modules.md
|
|
1587
1597
|
*/
|
|
1588
1598
|
'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
|
|
1589
1599
|
/**
|
|
1590
1600
|
* Forbid importing packages through relative paths.
|
|
1591
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1601
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-packages.md
|
|
1592
1602
|
*/
|
|
1593
1603
|
'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
|
|
1594
1604
|
/**
|
|
1595
1605
|
* Forbid importing modules from parent directories.
|
|
1596
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1606
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-parent-imports.md
|
|
1597
1607
|
*/
|
|
1598
1608
|
'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
|
|
1599
1609
|
/**
|
|
1600
1610
|
* Forbid importing a default export by a different name.
|
|
1601
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1611
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-rename-default.md
|
|
1602
1612
|
*/
|
|
1603
1613
|
'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>
|
|
1604
1614
|
/**
|
|
1605
1615
|
* Enforce which files can be imported in a given folder.
|
|
1606
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1616
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-restricted-paths.md
|
|
1607
1617
|
*/
|
|
1608
1618
|
'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
|
|
1609
1619
|
/**
|
|
1610
1620
|
* Forbid a module from importing itself.
|
|
1611
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1621
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-self-import.md
|
|
1612
1622
|
*/
|
|
1613
1623
|
'import/no-self-import'?: Linter.RuleEntry<[]>
|
|
1614
1624
|
/**
|
|
1615
1625
|
* Forbid unassigned imports.
|
|
1616
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1626
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unassigned-import.md
|
|
1617
1627
|
*/
|
|
1618
1628
|
'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
|
|
1619
1629
|
/**
|
|
1620
1630
|
* Ensure imports point to a file/module that can be resolved.
|
|
1621
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1631
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unresolved.md
|
|
1622
1632
|
*/
|
|
1623
1633
|
'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
|
|
1624
1634
|
/**
|
|
1625
1635
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
1626
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1636
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unused-modules.md
|
|
1627
1637
|
*/
|
|
1628
1638
|
'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
|
|
1629
1639
|
/**
|
|
1630
1640
|
* Forbid unnecessary path segments in import and require statements.
|
|
1631
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1641
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-useless-path-segments.md
|
|
1632
1642
|
*/
|
|
1633
1643
|
'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
|
|
1634
1644
|
/**
|
|
1635
1645
|
* Forbid webpack loader syntax in imports.
|
|
1636
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1646
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-webpack-loader-syntax.md
|
|
1637
1647
|
*/
|
|
1638
1648
|
'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
1639
1649
|
/**
|
|
1640
1650
|
* Enforce a convention in module import order.
|
|
1641
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1651
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/order.md
|
|
1642
1652
|
*/
|
|
1643
1653
|
'import/order'?: Linter.RuleEntry<ImportOrder>
|
|
1644
1654
|
/**
|
|
1645
1655
|
* Prefer a default export if module exports a single name or multiple names.
|
|
1646
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1656
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/prefer-default-export.md
|
|
1647
1657
|
*/
|
|
1648
1658
|
'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
|
|
1649
1659
|
/**
|
|
1650
1660
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
1651
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1661
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/unambiguous.md
|
|
1652
1662
|
*/
|
|
1653
1663
|
'import/unambiguous'?: Linter.RuleEntry<[]>
|
|
1654
1664
|
/**
|
|
@@ -1872,31 +1882,31 @@ interface RuleOptions {
|
|
|
1872
1882
|
*/
|
|
1873
1883
|
'jsonc/vue-custom-block/no-parsing-error'?: Linter.RuleEntry<[]>
|
|
1874
1884
|
/**
|
|
1875
|
-
* Require languages for fenced code blocks
|
|
1885
|
+
* Require languages for fenced code blocks
|
|
1876
1886
|
*/
|
|
1877
1887
|
'markdown/fenced-code-language'?: Linter.RuleEntry<MarkdownFencedCodeLanguage>
|
|
1878
1888
|
/**
|
|
1879
|
-
* Enforce heading levels increment by one
|
|
1889
|
+
* Enforce heading levels increment by one
|
|
1880
1890
|
*/
|
|
1881
1891
|
'markdown/heading-increment'?: Linter.RuleEntry<[]>
|
|
1882
1892
|
/**
|
|
1883
|
-
* Disallow duplicate headings in the same document
|
|
1893
|
+
* Disallow duplicate headings in the same document
|
|
1884
1894
|
*/
|
|
1885
1895
|
'markdown/no-duplicate-headings'?: Linter.RuleEntry<[]>
|
|
1886
1896
|
/**
|
|
1887
|
-
* Disallow empty links
|
|
1897
|
+
* Disallow empty links
|
|
1888
1898
|
*/
|
|
1889
1899
|
'markdown/no-empty-links'?: Linter.RuleEntry<[]>
|
|
1890
1900
|
/**
|
|
1891
|
-
* Disallow HTML tags
|
|
1901
|
+
* Disallow HTML tags
|
|
1892
1902
|
*/
|
|
1893
1903
|
'markdown/no-html'?: Linter.RuleEntry<MarkdownNoHtml>
|
|
1894
1904
|
/**
|
|
1895
|
-
* Disallow invalid label references
|
|
1905
|
+
* Disallow invalid label references
|
|
1896
1906
|
*/
|
|
1897
1907
|
'markdown/no-invalid-label-refs'?: Linter.RuleEntry<[]>
|
|
1898
1908
|
/**
|
|
1899
|
-
* Disallow missing label references
|
|
1909
|
+
* Disallow missing label references
|
|
1900
1910
|
*/
|
|
1901
1911
|
'markdown/no-missing-label-refs'?: Linter.RuleEntry<[]>
|
|
1902
1912
|
/**
|
|
@@ -2843,7 +2853,7 @@ interface RuleOptions {
|
|
|
2843
2853
|
*/
|
|
2844
2854
|
'test/padding-around-expect-groups'?: Linter.RuleEntry<[]>
|
|
2845
2855
|
/**
|
|
2846
|
-
* Enforce padding around
|
|
2856
|
+
* Enforce padding around `test` blocks
|
|
2847
2857
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-test-blocks.md
|
|
2848
2858
|
*/
|
|
2849
2859
|
'test/padding-around-test-blocks'?: Linter.RuleEntry<[]>
|
|
@@ -2948,7 +2958,7 @@ interface RuleOptions {
|
|
|
2948
2958
|
*/
|
|
2949
2959
|
'test/prefer-todo'?: Linter.RuleEntry<[]>
|
|
2950
2960
|
/**
|
|
2951
|
-
*
|
|
2961
|
+
* require `vi.mocked()` over `fn as Mock`
|
|
2952
2962
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
|
|
2953
2963
|
*/
|
|
2954
2964
|
'test/prefer-vi-mocked'?: Linter.RuleEntry<[]>
|
|
@@ -2983,7 +2993,7 @@ interface RuleOptions {
|
|
|
2983
2993
|
*/
|
|
2984
2994
|
'test/valid-expect'?: Linter.RuleEntry<TestValidExpect>
|
|
2985
2995
|
/**
|
|
2986
|
-
*
|
|
2996
|
+
* require promises that have expectations in their chain to be valid
|
|
2987
2997
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-expect-in-promise.md
|
|
2988
2998
|
*/
|
|
2989
2999
|
'test/valid-expect-in-promise'?: Linter.RuleEntry<[]>
|
|
@@ -4152,7 +4162,7 @@ interface RuleOptions {
|
|
|
4152
4162
|
* enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"`
|
|
4153
4163
|
* @see https://eslint.vuejs.org/rules/no-duplicate-attr-inheritance.html
|
|
4154
4164
|
*/
|
|
4155
|
-
'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<
|
|
4165
|
+
'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<VueNoDuplicateAttrInheritance>
|
|
4156
4166
|
/**
|
|
4157
4167
|
* disallow duplication of attributes
|
|
4158
4168
|
* @see https://eslint.vuejs.org/rules/no-duplicate-attributes.html
|
|
@@ -4597,7 +4607,7 @@ interface RuleOptions {
|
|
|
4597
4607
|
*/
|
|
4598
4608
|
'vue/prefer-true-attribute-shorthand'?: Linter.RuleEntry<VuePreferTrueAttributeShorthand>
|
|
4599
4609
|
/**
|
|
4600
|
-
* require using `useTemplateRef` instead of `ref` for template refs
|
|
4610
|
+
* require using `useTemplateRef` instead of `ref`/`shallowRef` for template refs
|
|
4601
4611
|
* @see https://eslint.vuejs.org/rules/prefer-use-template-ref.html
|
|
4602
4612
|
*/
|
|
4603
4613
|
'vue/prefer-use-template-ref'?: Linter.RuleEntry<[]>
|
|
@@ -4711,6 +4721,11 @@ interface RuleOptions {
|
|
|
4711
4721
|
* @see https://eslint.vuejs.org/rules/require-valid-default-prop.html
|
|
4712
4722
|
*/
|
|
4713
4723
|
'vue/require-valid-default-prop'?: Linter.RuleEntry<[]>
|
|
4724
|
+
/**
|
|
4725
|
+
* enforce using only specific component names
|
|
4726
|
+
* @see https://eslint.vuejs.org/rules/restricted-component-names.html
|
|
4727
|
+
*/
|
|
4728
|
+
'vue/restricted-component-names'?: Linter.RuleEntry<VueRestrictedComponentNames>
|
|
4714
4729
|
/**
|
|
4715
4730
|
* enforce that a return statement is present in computed property
|
|
4716
4731
|
* @see https://eslint.vuejs.org/rules/return-in-computed-property.html
|
|
@@ -4737,6 +4752,11 @@ interface RuleOptions {
|
|
|
4737
4752
|
* @see https://eslint.vuejs.org/rules/singleline-html-element-content-newline.html
|
|
4738
4753
|
*/
|
|
4739
4754
|
'vue/singleline-html-element-content-newline'?: Linter.RuleEntry<VueSinglelineHtmlElementContentNewline>
|
|
4755
|
+
/**
|
|
4756
|
+
* enforce specific casing for slot names
|
|
4757
|
+
* @see https://eslint.vuejs.org/rules/slot-name-casing.html
|
|
4758
|
+
*/
|
|
4759
|
+
'vue/slot-name-casing'?: Linter.RuleEntry<VueSlotNameCasing>
|
|
4740
4760
|
/**
|
|
4741
4761
|
* enforce sort-keys in a manner that is compatible with order-in-components
|
|
4742
4762
|
* @see https://eslint.vuejs.org/rules/sort-keys.html
|
|
@@ -5391,6 +5411,7 @@ type StylisticIndent = []|[("tab" | number)]|[("tab" | number), {
|
|
|
5391
5411
|
ImportDeclaration?: (number | ("first" | "off"))
|
|
5392
5412
|
flatTernaryExpressions?: boolean
|
|
5393
5413
|
offsetTernaryExpressions?: boolean
|
|
5414
|
+
offsetTernaryExpressionsOffsetCallExpressions?: boolean
|
|
5394
5415
|
ignoredNodes?: string[]
|
|
5395
5416
|
ignoreComments?: boolean
|
|
5396
5417
|
tabLength?: number
|
|
@@ -5534,6 +5555,7 @@ type StylisticKeySpacing = []|[({
|
|
|
5534
5555
|
mode?: ("strict" | "minimum")
|
|
5535
5556
|
beforeColon?: boolean
|
|
5536
5557
|
afterColon?: boolean
|
|
5558
|
+
ignoredNodes?: ("ObjectExpression" | "ObjectPattern" | "ImportDeclaration" | "ExportNamedDeclaration" | "ExportAllDeclaration" | "TSTypeLiteral" | "TSInterfaceBody" | "ClassBody")[]
|
|
5537
5559
|
} | {
|
|
5538
5560
|
singleLine?: {
|
|
5539
5561
|
mode?: ("strict" | "minimum")
|
|
@@ -6049,6 +6071,7 @@ type StylisticNoExtraParens = ([]|["functions"] | []|["all"]|["all", {
|
|
|
6049
6071
|
enforceForNewInMemberExpressions?: boolean
|
|
6050
6072
|
enforceForFunctionPrototypeMethods?: boolean
|
|
6051
6073
|
allowParensAfterCommentPattern?: string
|
|
6074
|
+
nestedConditionalExpressions?: boolean
|
|
6052
6075
|
}])
|
|
6053
6076
|
// ----- @stylistic/no-mixed-operators -----
|
|
6054
6077
|
type StylisticNoMixedOperators = []|[{
|
|
@@ -6146,14 +6169,14 @@ type StylisticOperatorLinebreak = []|[(("after" | "before" | "none") | null)]|[(
|
|
|
6146
6169
|
}
|
|
6147
6170
|
}]
|
|
6148
6171
|
// ----- @stylistic/padded-blocks -----
|
|
6149
|
-
type StylisticPaddedBlocks = []|[(("always" | "never") | {
|
|
6150
|
-
blocks?: ("always" | "never")
|
|
6151
|
-
switches?: ("always" | "never")
|
|
6152
|
-
classes?: ("always" | "never")
|
|
6153
|
-
})]|[(("always" | "never") | {
|
|
6154
|
-
blocks?: ("always" | "never")
|
|
6155
|
-
switches?: ("always" | "never")
|
|
6156
|
-
classes?: ("always" | "never")
|
|
6172
|
+
type StylisticPaddedBlocks = []|[(("always" | "never" | "start" | "end") | {
|
|
6173
|
+
blocks?: ("always" | "never" | "start" | "end")
|
|
6174
|
+
switches?: ("always" | "never" | "start" | "end")
|
|
6175
|
+
classes?: ("always" | "never" | "start" | "end")
|
|
6176
|
+
})]|[(("always" | "never" | "start" | "end") | {
|
|
6177
|
+
blocks?: ("always" | "never" | "start" | "end")
|
|
6178
|
+
switches?: ("always" | "never" | "start" | "end")
|
|
6179
|
+
classes?: ("always" | "never" | "start" | "end")
|
|
6157
6180
|
}), {
|
|
6158
6181
|
allowSingleLineBlocks?: boolean
|
|
6159
6182
|
}]
|
|
@@ -6174,7 +6197,7 @@ type StylisticQuoteProps = ([]|[("always" | "as-needed" | "consistent" | "consis
|
|
|
6174
6197
|
// ----- @stylistic/quotes -----
|
|
6175
6198
|
type StylisticQuotes = []|[("single" | "double" | "backtick")]|[("single" | "double" | "backtick"), ("avoid-escape" | {
|
|
6176
6199
|
avoidEscape?: boolean
|
|
6177
|
-
allowTemplateLiterals?: boolean
|
|
6200
|
+
allowTemplateLiterals?: (boolean | ("never" | "avoidEscape" | "always"))
|
|
6178
6201
|
ignoreStringLiterals?: boolean
|
|
6179
6202
|
})]
|
|
6180
6203
|
// ----- @stylistic/rest-spread-spacing -----
|
|
@@ -6321,7 +6344,9 @@ type TypescriptEslintConsistentTypeAssertions = []|[({
|
|
|
6321
6344
|
assertionStyle: "never"
|
|
6322
6345
|
} | {
|
|
6323
6346
|
|
|
6324
|
-
|
|
6347
|
+
arrayLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
|
|
6348
|
+
|
|
6349
|
+
assertionStyle?: ("as" | "angle-bracket")
|
|
6325
6350
|
|
|
6326
6351
|
objectLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
|
|
6327
6352
|
})]
|
|
@@ -6777,6 +6802,22 @@ type TypescriptEslintNoConfusingVoidExpression = []|[{
|
|
|
6777
6802
|
|
|
6778
6803
|
ignoreVoidReturningFunctions?: boolean
|
|
6779
6804
|
}]
|
|
6805
|
+
// ----- @typescript-eslint/no-deprecated -----
|
|
6806
|
+
type TypescriptEslintNoDeprecated = []|[{
|
|
6807
|
+
|
|
6808
|
+
allow?: (string | {
|
|
6809
|
+
from: "file"
|
|
6810
|
+
name: (string | [string, ...(string)[]])
|
|
6811
|
+
path?: string
|
|
6812
|
+
} | {
|
|
6813
|
+
from: "lib"
|
|
6814
|
+
name: (string | [string, ...(string)[]])
|
|
6815
|
+
} | {
|
|
6816
|
+
from: "package"
|
|
6817
|
+
name: (string | [string, ...(string)[]])
|
|
6818
|
+
package: string
|
|
6819
|
+
})[]
|
|
6820
|
+
}]
|
|
6780
6821
|
// ----- @typescript-eslint/no-duplicate-type-constituents -----
|
|
6781
6822
|
type TypescriptEslintNoDuplicateTypeConstituents = []|[{
|
|
6782
6823
|
|
|
@@ -6918,6 +6959,22 @@ type TypescriptEslintNoMisusedPromises = []|[{
|
|
|
6918
6959
|
variables?: boolean
|
|
6919
6960
|
})
|
|
6920
6961
|
}]
|
|
6962
|
+
// ----- @typescript-eslint/no-misused-spread -----
|
|
6963
|
+
type TypescriptEslintNoMisusedSpread = []|[{
|
|
6964
|
+
|
|
6965
|
+
allow?: (string | {
|
|
6966
|
+
from: "file"
|
|
6967
|
+
name: (string | [string, ...(string)[]])
|
|
6968
|
+
path?: string
|
|
6969
|
+
} | {
|
|
6970
|
+
from: "lib"
|
|
6971
|
+
name: (string | [string, ...(string)[]])
|
|
6972
|
+
} | {
|
|
6973
|
+
from: "package"
|
|
6974
|
+
name: (string | [string, ...(string)[]])
|
|
6975
|
+
package: string
|
|
6976
|
+
})[]
|
|
6977
|
+
}]
|
|
6921
6978
|
// ----- @typescript-eslint/no-namespace -----
|
|
6922
6979
|
type TypescriptEslintNoNamespace = []|[{
|
|
6923
6980
|
|
|
@@ -6993,7 +7050,7 @@ type TypescriptEslintNoShadow = []|[{
|
|
|
6993
7050
|
|
|
6994
7051
|
builtinGlobals?: boolean
|
|
6995
7052
|
|
|
6996
|
-
hoist?: ("all" | "functions" | "never")
|
|
7053
|
+
hoist?: ("all" | "functions" | "functions-and-types" | "never" | "types")
|
|
6997
7054
|
|
|
6998
7055
|
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
6999
7056
|
|
|
@@ -7033,6 +7090,8 @@ type TypescriptEslintNoUnnecessaryBooleanLiteralCompare = []|[{
|
|
|
7033
7090
|
allowComparingNullableBooleansToFalse?: boolean
|
|
7034
7091
|
|
|
7035
7092
|
allowComparingNullableBooleansToTrue?: boolean
|
|
7093
|
+
|
|
7094
|
+
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
7036
7095
|
}]
|
|
7037
7096
|
// ----- @typescript-eslint/no-unnecessary-condition -----
|
|
7038
7097
|
type TypescriptEslintNoUnnecessaryCondition = []|[{
|
|
@@ -7212,6 +7271,10 @@ type TypescriptEslintPreferOptionalChain = []|[{
|
|
|
7212
7271
|
type TypescriptEslintPreferPromiseRejectErrors = []|[{
|
|
7213
7272
|
|
|
7214
7273
|
allowEmptyReject?: boolean
|
|
7274
|
+
|
|
7275
|
+
allowThrowingAny?: boolean
|
|
7276
|
+
|
|
7277
|
+
allowThrowingUnknown?: boolean
|
|
7215
7278
|
}]
|
|
7216
7279
|
// ----- @typescript-eslint/prefer-readonly -----
|
|
7217
7280
|
type TypescriptEslintPreferReadonly = []|[{
|
|
@@ -7351,6 +7414,8 @@ type TypescriptEslintSwitchExhaustivenessCheck = []|[{
|
|
|
7351
7414
|
|
|
7352
7415
|
considerDefaultExhaustiveForUnions?: boolean
|
|
7353
7416
|
|
|
7417
|
+
defaultCaseCommentPattern?: string
|
|
7418
|
+
|
|
7354
7419
|
requireDefaultForNonUnion?: boolean
|
|
7355
7420
|
}]
|
|
7356
7421
|
// ----- @typescript-eslint/triple-slash-reference -----
|
|
@@ -8022,6 +8087,9 @@ type NodeNoExtraneousImport = []|[{
|
|
|
8022
8087
|
replace: [string, string]
|
|
8023
8088
|
})[]])
|
|
8024
8089
|
resolvePaths?: string[]
|
|
8090
|
+
resolverConfig?: {
|
|
8091
|
+
[k: string]: unknown | undefined
|
|
8092
|
+
}
|
|
8025
8093
|
}]
|
|
8026
8094
|
// ----- node/no-extraneous-require -----
|
|
8027
8095
|
type NodeNoExtraneousRequire = []|[{
|
|
@@ -8043,6 +8111,9 @@ type NodeNoExtraneousRequire = []|[{
|
|
|
8043
8111
|
replace: [string, string]
|
|
8044
8112
|
})[]])
|
|
8045
8113
|
resolvePaths?: string[]
|
|
8114
|
+
resolverConfig?: {
|
|
8115
|
+
[k: string]: unknown | undefined
|
|
8116
|
+
}
|
|
8046
8117
|
tryExtensions?: string[]
|
|
8047
8118
|
}]
|
|
8048
8119
|
// ----- node/no-hide-core-modules -----
|
|
@@ -8055,6 +8126,9 @@ type NodeNoHideCoreModules = []|[{
|
|
|
8055
8126
|
type NodeNoMissingImport = []|[{
|
|
8056
8127
|
allowModules?: string[]
|
|
8057
8128
|
resolvePaths?: string[]
|
|
8129
|
+
resolverConfig?: {
|
|
8130
|
+
[k: string]: unknown | undefined
|
|
8131
|
+
}
|
|
8058
8132
|
tryExtensions?: string[]
|
|
8059
8133
|
ignoreTypeImport?: boolean
|
|
8060
8134
|
tsconfigPath?: string
|
|
@@ -8065,6 +8139,9 @@ type NodeNoMissingRequire = []|[{
|
|
|
8065
8139
|
allowModules?: string[]
|
|
8066
8140
|
tryExtensions?: string[]
|
|
8067
8141
|
resolvePaths?: string[]
|
|
8142
|
+
resolverConfig?: {
|
|
8143
|
+
[k: string]: unknown | undefined
|
|
8144
|
+
}
|
|
8068
8145
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
|
|
8069
8146
|
tsconfigPath?: string
|
|
8070
8147
|
}]
|
|
@@ -8132,6 +8209,9 @@ type NodeNoUnpublishedImport = []|[{
|
|
|
8132
8209
|
replace: [string, string]
|
|
8133
8210
|
})[]])
|
|
8134
8211
|
resolvePaths?: string[]
|
|
8212
|
+
resolverConfig?: {
|
|
8213
|
+
[k: string]: unknown | undefined
|
|
8214
|
+
}
|
|
8135
8215
|
ignoreTypeImport?: boolean
|
|
8136
8216
|
ignorePrivate?: boolean
|
|
8137
8217
|
}]
|
|
@@ -8155,6 +8235,9 @@ type NodeNoUnpublishedRequire = []|[{
|
|
|
8155
8235
|
replace: [string, string]
|
|
8156
8236
|
})[]])
|
|
8157
8237
|
resolvePaths?: string[]
|
|
8238
|
+
resolverConfig?: {
|
|
8239
|
+
[k: string]: unknown | undefined
|
|
8240
|
+
}
|
|
8158
8241
|
tryExtensions?: string[]
|
|
8159
8242
|
ignorePrivate?: boolean
|
|
8160
8243
|
}]
|
|
@@ -8172,7 +8255,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
8172
8255
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
8173
8256
|
version?: string
|
|
8174
8257
|
allowExperimental?: boolean
|
|
8175
|
-
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
|
|
8258
|
+
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")[]
|
|
8176
8259
|
}]
|
|
8177
8260
|
// ----- node/prefer-global/buffer -----
|
|
8178
8261
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -8217,26 +8300,85 @@ type NodeShebang = []|[{
|
|
|
8217
8300
|
}
|
|
8218
8301
|
}]
|
|
8219
8302
|
// ----- perfectionist/sort-array-includes -----
|
|
8220
|
-
type PerfectionistSortArrayIncludes =
|
|
8303
|
+
type PerfectionistSortArrayIncludes = {
|
|
8304
|
+
|
|
8305
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8306
|
+
|
|
8307
|
+
ignoreCase?: boolean
|
|
8308
|
+
|
|
8309
|
+
alphabet?: string
|
|
8310
|
+
|
|
8311
|
+
locales?: (string | string[])
|
|
8221
8312
|
|
|
8222
|
-
|
|
8313
|
+
order?: ("asc" | "desc")
|
|
8223
8314
|
|
|
8224
8315
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
8225
8316
|
|
|
8317
|
+
customGroups?: ({
|
|
8318
|
+
|
|
8319
|
+
groupName?: string
|
|
8320
|
+
|
|
8321
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
8322
|
+
|
|
8323
|
+
order?: ("desc" | "asc")
|
|
8324
|
+
|
|
8325
|
+
newlinesInside?: ("always" | "never")
|
|
8326
|
+
anyOf?: {
|
|
8327
|
+
|
|
8328
|
+
selector?: ("literal" | "spread")
|
|
8329
|
+
|
|
8330
|
+
elementNamePattern?: string
|
|
8331
|
+
}[]
|
|
8332
|
+
} | {
|
|
8333
|
+
|
|
8334
|
+
groupName?: string
|
|
8335
|
+
|
|
8336
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
8337
|
+
|
|
8338
|
+
order?: ("desc" | "asc")
|
|
8339
|
+
|
|
8340
|
+
newlinesInside?: ("always" | "never")
|
|
8341
|
+
|
|
8342
|
+
selector?: ("literal" | "spread")
|
|
8343
|
+
|
|
8344
|
+
elementNamePattern?: string
|
|
8345
|
+
})[]
|
|
8346
|
+
useConfigurationIf?: {
|
|
8347
|
+
allNamesMatchPattern?: string
|
|
8348
|
+
}
|
|
8349
|
+
|
|
8350
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8351
|
+
|
|
8352
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
8353
|
+
block?: (string[] | boolean | string)
|
|
8354
|
+
line?: (string[] | boolean | string)
|
|
8355
|
+
[k: string]: unknown | undefined
|
|
8356
|
+
})
|
|
8357
|
+
|
|
8226
8358
|
partitionByNewLine?: boolean
|
|
8227
8359
|
|
|
8360
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8361
|
+
|
|
8362
|
+
groups?: (string | string[] | {
|
|
8363
|
+
|
|
8364
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8365
|
+
[k: string]: unknown | undefined
|
|
8366
|
+
})[]
|
|
8367
|
+
}[]
|
|
8368
|
+
// ----- perfectionist/sort-classes -----
|
|
8369
|
+
type PerfectionistSortClasses = []|[{
|
|
8370
|
+
|
|
8228
8371
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8229
8372
|
|
|
8230
8373
|
ignoreCase?: boolean
|
|
8231
8374
|
|
|
8375
|
+
alphabet?: string
|
|
8376
|
+
|
|
8232
8377
|
locales?: (string | string[])
|
|
8233
8378
|
|
|
8234
8379
|
order?: ("asc" | "desc")
|
|
8235
8380
|
|
|
8236
|
-
|
|
8237
|
-
}]
|
|
8238
|
-
// ----- perfectionist/sort-classes -----
|
|
8239
|
-
type PerfectionistSortClasses = []|[{
|
|
8381
|
+
ignoreCallbackDependenciesPatterns?: string[]
|
|
8240
8382
|
|
|
8241
8383
|
customGroups?: ({
|
|
8242
8384
|
|
|
@@ -8245,16 +8387,18 @@ type PerfectionistSortClasses = []|[{
|
|
|
8245
8387
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
8246
8388
|
|
|
8247
8389
|
order?: ("desc" | "asc")
|
|
8390
|
+
|
|
8391
|
+
newlinesInside?: ("always" | "never")
|
|
8248
8392
|
anyOf?: {
|
|
8249
8393
|
|
|
8250
|
-
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
8251
|
-
|
|
8252
|
-
elementValuePattern?: string
|
|
8253
|
-
|
|
8254
8394
|
decoratorNamePattern?: string
|
|
8255
8395
|
|
|
8396
|
+
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
8397
|
+
|
|
8256
8398
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
8257
8399
|
|
|
8400
|
+
elementValuePattern?: string
|
|
8401
|
+
|
|
8258
8402
|
elementNamePattern?: string
|
|
8259
8403
|
}[]
|
|
8260
8404
|
} | {
|
|
@@ -8265,41 +8409,49 @@ type PerfectionistSortClasses = []|[{
|
|
|
8265
8409
|
|
|
8266
8410
|
order?: ("desc" | "asc")
|
|
8267
8411
|
|
|
8268
|
-
|
|
8269
|
-
|
|
8270
|
-
elementValuePattern?: string
|
|
8412
|
+
newlinesInside?: ("always" | "never")
|
|
8271
8413
|
|
|
8272
8414
|
decoratorNamePattern?: string
|
|
8273
8415
|
|
|
8416
|
+
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
8417
|
+
|
|
8274
8418
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
8275
8419
|
|
|
8420
|
+
elementValuePattern?: string
|
|
8421
|
+
|
|
8276
8422
|
elementNamePattern?: string
|
|
8277
8423
|
})[]
|
|
8278
8424
|
|
|
8279
|
-
|
|
8280
|
-
|
|
8281
|
-
|
|
8425
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
8426
|
+
block?: (string[] | boolean | string)
|
|
8427
|
+
line?: (string[] | boolean | string)
|
|
8428
|
+
[k: string]: unknown | undefined
|
|
8429
|
+
})
|
|
8282
8430
|
|
|
8283
8431
|
partitionByNewLine?: boolean
|
|
8284
8432
|
|
|
8285
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8286
|
-
|
|
8287
8433
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8288
8434
|
|
|
8289
|
-
|
|
8290
|
-
|
|
8291
|
-
locales?: (string | string[])
|
|
8292
|
-
|
|
8293
|
-
groups?: (string | string[])[]
|
|
8294
|
-
|
|
8295
|
-
order?: ("asc" | "desc")
|
|
8435
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8296
8436
|
|
|
8297
|
-
|
|
8437
|
+
groups?: (string | string[] | {
|
|
8438
|
+
|
|
8439
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8440
|
+
[k: string]: unknown | undefined
|
|
8441
|
+
})[]
|
|
8298
8442
|
}]
|
|
8299
8443
|
// ----- perfectionist/sort-decorators -----
|
|
8300
8444
|
type PerfectionistSortDecorators = []|[{
|
|
8301
8445
|
|
|
8302
|
-
|
|
8446
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8447
|
+
|
|
8448
|
+
ignoreCase?: boolean
|
|
8449
|
+
|
|
8450
|
+
alphabet?: string
|
|
8451
|
+
|
|
8452
|
+
locales?: (string | string[])
|
|
8453
|
+
|
|
8454
|
+
order?: ("asc" | "desc")
|
|
8303
8455
|
|
|
8304
8456
|
sortOnParameters?: boolean
|
|
8305
8457
|
|
|
@@ -8311,85 +8463,154 @@ type PerfectionistSortDecorators = []|[{
|
|
|
8311
8463
|
|
|
8312
8464
|
sortOnClasses?: boolean
|
|
8313
8465
|
|
|
8314
|
-
|
|
8466
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
8467
|
+
block?: (string[] | boolean | string)
|
|
8468
|
+
line?: (string[] | boolean | string)
|
|
8469
|
+
[k: string]: unknown | undefined
|
|
8470
|
+
})
|
|
8315
8471
|
|
|
8316
8472
|
customGroups?: {
|
|
8317
8473
|
[k: string]: (string | string[]) | undefined
|
|
8318
8474
|
}
|
|
8319
8475
|
|
|
8320
|
-
|
|
8321
|
-
|
|
8322
|
-
locales?: (string | string[])
|
|
8323
|
-
|
|
8324
|
-
groups?: (string | string[])[]
|
|
8325
|
-
|
|
8326
|
-
order?: ("asc" | "desc")
|
|
8476
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8327
8477
|
|
|
8328
|
-
|
|
8478
|
+
groups?: (string | string[] | {
|
|
8479
|
+
|
|
8480
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8481
|
+
[k: string]: unknown | undefined
|
|
8482
|
+
})[]
|
|
8329
8483
|
}]
|
|
8330
8484
|
// ----- perfectionist/sort-enums -----
|
|
8331
8485
|
type PerfectionistSortEnums = []|[{
|
|
8332
8486
|
|
|
8333
|
-
partitionByComment?: (string[] | boolean | string)
|
|
8334
|
-
|
|
8335
|
-
forceNumericSort?: boolean
|
|
8336
|
-
|
|
8337
|
-
sortByValue?: boolean
|
|
8338
|
-
|
|
8339
|
-
partitionByNewLine?: boolean
|
|
8340
|
-
|
|
8341
8487
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8342
8488
|
|
|
8343
8489
|
ignoreCase?: boolean
|
|
8344
8490
|
|
|
8491
|
+
alphabet?: string
|
|
8492
|
+
|
|
8345
8493
|
locales?: (string | string[])
|
|
8346
8494
|
|
|
8347
8495
|
order?: ("asc" | "desc")
|
|
8348
8496
|
|
|
8349
|
-
|
|
8350
|
-
|
|
8351
|
-
|
|
8352
|
-
|
|
8497
|
+
forceNumericSort?: boolean
|
|
8498
|
+
customGroups?: ({
|
|
8499
|
+
[k: string]: (string | string[]) | undefined
|
|
8500
|
+
} | ({
|
|
8501
|
+
|
|
8502
|
+
groupName?: string
|
|
8503
|
+
|
|
8504
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
8505
|
+
|
|
8506
|
+
order?: ("desc" | "asc")
|
|
8507
|
+
|
|
8508
|
+
newlinesInside?: ("always" | "never")
|
|
8509
|
+
anyOf?: {
|
|
8510
|
+
|
|
8511
|
+
elementValuePattern?: string
|
|
8512
|
+
|
|
8513
|
+
elementNamePattern?: string
|
|
8514
|
+
}[]
|
|
8515
|
+
} | {
|
|
8516
|
+
|
|
8517
|
+
groupName?: string
|
|
8518
|
+
|
|
8519
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
8520
|
+
|
|
8521
|
+
order?: ("desc" | "asc")
|
|
8522
|
+
|
|
8523
|
+
newlinesInside?: ("always" | "never")
|
|
8524
|
+
|
|
8525
|
+
elementValuePattern?: string
|
|
8526
|
+
|
|
8527
|
+
elementNamePattern?: string
|
|
8528
|
+
})[])
|
|
8353
8529
|
|
|
8354
|
-
|
|
8530
|
+
sortByValue?: boolean
|
|
8355
8531
|
|
|
8356
|
-
|
|
8532
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
8533
|
+
block?: (string[] | boolean | string)
|
|
8534
|
+
line?: (string[] | boolean | string)
|
|
8535
|
+
[k: string]: unknown | undefined
|
|
8536
|
+
})
|
|
8357
8537
|
|
|
8358
8538
|
partitionByNewLine?: boolean
|
|
8359
8539
|
|
|
8540
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8541
|
+
|
|
8542
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8543
|
+
|
|
8544
|
+
groups?: (string | string[] | {
|
|
8545
|
+
|
|
8546
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8547
|
+
[k: string]: unknown | undefined
|
|
8548
|
+
})[]
|
|
8549
|
+
}]
|
|
8550
|
+
// ----- perfectionist/sort-exports -----
|
|
8551
|
+
type PerfectionistSortExports = []|[{
|
|
8552
|
+
|
|
8360
8553
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8361
8554
|
|
|
8362
8555
|
ignoreCase?: boolean
|
|
8363
8556
|
|
|
8557
|
+
alphabet?: string
|
|
8558
|
+
|
|
8364
8559
|
locales?: (string | string[])
|
|
8365
8560
|
|
|
8366
8561
|
order?: ("asc" | "desc")
|
|
8367
8562
|
|
|
8368
|
-
|
|
8563
|
+
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
8564
|
+
|
|
8565
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
8566
|
+
block?: (string[] | boolean | string)
|
|
8567
|
+
line?: (string[] | boolean | string)
|
|
8568
|
+
[k: string]: unknown | undefined
|
|
8569
|
+
})
|
|
8570
|
+
|
|
8571
|
+
partitionByNewLine?: boolean
|
|
8572
|
+
|
|
8573
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8369
8574
|
}]
|
|
8370
8575
|
// ----- perfectionist/sort-heritage-clauses -----
|
|
8371
8576
|
type PerfectionistSortHeritageClauses = []|[{
|
|
8372
8577
|
|
|
8373
8578
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8374
8579
|
|
|
8375
|
-
customGroups?: {
|
|
8376
|
-
[k: string]: (string | string[]) | undefined
|
|
8377
|
-
}
|
|
8378
|
-
|
|
8379
8580
|
ignoreCase?: boolean
|
|
8380
8581
|
|
|
8381
|
-
|
|
8582
|
+
alphabet?: string
|
|
8382
8583
|
|
|
8383
|
-
|
|
8584
|
+
locales?: (string | string[])
|
|
8384
8585
|
|
|
8385
8586
|
order?: ("asc" | "desc")
|
|
8386
8587
|
|
|
8387
|
-
|
|
8588
|
+
customGroups?: {
|
|
8589
|
+
[k: string]: (string | string[]) | undefined
|
|
8590
|
+
}
|
|
8591
|
+
|
|
8592
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8593
|
+
|
|
8594
|
+
groups?: (string | string[] | {
|
|
8595
|
+
|
|
8596
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8597
|
+
[k: string]: unknown | undefined
|
|
8598
|
+
})[]
|
|
8388
8599
|
}]
|
|
8389
8600
|
// ----- perfectionist/sort-imports -----
|
|
8390
8601
|
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
8391
8602
|
type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
8392
8603
|
|
|
8604
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8605
|
+
|
|
8606
|
+
ignoreCase?: boolean
|
|
8607
|
+
|
|
8608
|
+
alphabet?: string
|
|
8609
|
+
|
|
8610
|
+
locales?: (string | string[])
|
|
8611
|
+
|
|
8612
|
+
order?: ("asc" | "desc")
|
|
8613
|
+
|
|
8393
8614
|
customGroups?: {
|
|
8394
8615
|
|
|
8395
8616
|
value?: {
|
|
@@ -8401,8 +8622,6 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
8401
8622
|
}
|
|
8402
8623
|
}
|
|
8403
8624
|
|
|
8404
|
-
partitionByComment?: (string[] | boolean | string)
|
|
8405
|
-
|
|
8406
8625
|
internalPattern?: string[]
|
|
8407
8626
|
|
|
8408
8627
|
maxLineLength?: number
|
|
@@ -8413,21 +8632,23 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
8413
8632
|
|
|
8414
8633
|
tsconfigRootDir?: string
|
|
8415
8634
|
|
|
8416
|
-
|
|
8635
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
8636
|
+
block?: (string[] | boolean | string)
|
|
8637
|
+
line?: (string[] | boolean | string)
|
|
8638
|
+
[k: string]: unknown | undefined
|
|
8639
|
+
})
|
|
8417
8640
|
|
|
8418
|
-
|
|
8641
|
+
partitionByNewLine?: boolean
|
|
8419
8642
|
|
|
8420
8643
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8421
8644
|
|
|
8422
|
-
|
|
8423
|
-
|
|
8424
|
-
locales?: (string | string[])
|
|
8425
|
-
|
|
8426
|
-
groups?: (string | string[])[]
|
|
8645
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8427
8646
|
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8647
|
+
groups?: (string | string[] | {
|
|
8648
|
+
|
|
8649
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8650
|
+
[k: string]: unknown | undefined
|
|
8651
|
+
})[]
|
|
8431
8652
|
})
|
|
8432
8653
|
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
|
|
8433
8654
|
[k: string]: unknown | undefined
|
|
@@ -8437,96 +8658,214 @@ interface _PerfectionistSortImports_IsLineLength {
|
|
|
8437
8658
|
[k: string]: unknown | undefined
|
|
8438
8659
|
}
|
|
8439
8660
|
// ----- perfectionist/sort-interfaces -----
|
|
8440
|
-
type PerfectionistSortInterfaces =
|
|
8441
|
-
|
|
8442
|
-
ignorePattern?: string[]
|
|
8661
|
+
type PerfectionistSortInterfaces = {
|
|
8443
8662
|
|
|
8444
|
-
|
|
8663
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8445
8664
|
|
|
8446
|
-
|
|
8665
|
+
ignoreCase?: boolean
|
|
8447
8666
|
|
|
8448
|
-
|
|
8667
|
+
alphabet?: string
|
|
8449
8668
|
|
|
8450
|
-
|
|
8669
|
+
locales?: (string | string[])
|
|
8451
8670
|
|
|
8452
|
-
|
|
8671
|
+
order?: ("asc" | "desc")
|
|
8453
8672
|
|
|
8454
|
-
|
|
8455
|
-
|
|
8673
|
+
ignorePattern?: string[]
|
|
8674
|
+
useConfigurationIf?: {
|
|
8675
|
+
allNamesMatchPattern?: string
|
|
8676
|
+
declarationMatchesPattern?: string
|
|
8456
8677
|
}
|
|
8678
|
+
customGroups?: ({
|
|
8679
|
+
[k: string]: (string | string[]) | undefined
|
|
8680
|
+
} | ({
|
|
8681
|
+
|
|
8682
|
+
groupName?: string
|
|
8683
|
+
|
|
8684
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
8685
|
+
|
|
8686
|
+
order?: ("desc" | "asc")
|
|
8687
|
+
|
|
8688
|
+
newlinesInside?: ("always" | "never")
|
|
8689
|
+
anyOf?: {
|
|
8690
|
+
|
|
8691
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
8692
|
+
|
|
8693
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
8694
|
+
|
|
8695
|
+
elementNamePattern?: string
|
|
8696
|
+
}[]
|
|
8697
|
+
} | {
|
|
8698
|
+
|
|
8699
|
+
groupName?: string
|
|
8700
|
+
|
|
8701
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
8702
|
+
|
|
8703
|
+
order?: ("desc" | "asc")
|
|
8704
|
+
|
|
8705
|
+
newlinesInside?: ("always" | "never")
|
|
8706
|
+
|
|
8707
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
8708
|
+
|
|
8709
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
8710
|
+
|
|
8711
|
+
elementNamePattern?: string
|
|
8712
|
+
})[])
|
|
8457
8713
|
|
|
8458
|
-
|
|
8714
|
+
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
8459
8715
|
|
|
8460
|
-
|
|
8716
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8461
8717
|
|
|
8462
|
-
|
|
8718
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
8719
|
+
block?: (string[] | boolean | string)
|
|
8720
|
+
line?: (string[] | boolean | string)
|
|
8721
|
+
[k: string]: unknown | undefined
|
|
8722
|
+
})
|
|
8463
8723
|
|
|
8464
|
-
|
|
8724
|
+
partitionByNewLine?: boolean
|
|
8465
8725
|
|
|
8466
|
-
|
|
8467
|
-
|
|
8726
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8727
|
+
|
|
8728
|
+
groups?: (string | string[] | {
|
|
8729
|
+
|
|
8730
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8731
|
+
[k: string]: unknown | undefined
|
|
8732
|
+
})[]
|
|
8733
|
+
}[]
|
|
8468
8734
|
// ----- perfectionist/sort-intersection-types -----
|
|
8469
8735
|
type PerfectionistSortIntersectionTypes = []|[{
|
|
8470
8736
|
|
|
8471
|
-
partitionByComment?: (string[] | boolean | string)
|
|
8472
|
-
|
|
8473
|
-
partitionByNewLine?: boolean
|
|
8474
|
-
|
|
8475
8737
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8476
8738
|
|
|
8477
|
-
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8478
|
-
|
|
8479
8739
|
ignoreCase?: boolean
|
|
8480
8740
|
|
|
8481
|
-
|
|
8741
|
+
alphabet?: string
|
|
8482
8742
|
|
|
8483
|
-
|
|
8743
|
+
locales?: (string | string[])
|
|
8484
8744
|
|
|
8485
8745
|
order?: ("asc" | "desc")
|
|
8486
8746
|
|
|
8487
|
-
|
|
8747
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
8748
|
+
block?: (string[] | boolean | string)
|
|
8749
|
+
line?: (string[] | boolean | string)
|
|
8750
|
+
[k: string]: unknown | undefined
|
|
8751
|
+
})
|
|
8752
|
+
|
|
8753
|
+
partitionByNewLine?: boolean
|
|
8754
|
+
|
|
8755
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8756
|
+
|
|
8757
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8758
|
+
|
|
8759
|
+
groups?: (string | string[] | {
|
|
8760
|
+
|
|
8761
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8762
|
+
[k: string]: unknown | undefined
|
|
8763
|
+
})[]
|
|
8488
8764
|
}]
|
|
8489
8765
|
// ----- perfectionist/sort-jsx-props -----
|
|
8490
8766
|
type PerfectionistSortJsxProps = []|[{
|
|
8491
8767
|
|
|
8768
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8769
|
+
|
|
8770
|
+
ignoreCase?: boolean
|
|
8771
|
+
|
|
8772
|
+
alphabet?: string
|
|
8773
|
+
|
|
8774
|
+
locales?: (string | string[])
|
|
8775
|
+
|
|
8776
|
+
order?: ("asc" | "desc")
|
|
8777
|
+
|
|
8492
8778
|
ignorePattern?: string[]
|
|
8493
8779
|
|
|
8494
|
-
|
|
8780
|
+
partitionByNewLine?: boolean
|
|
8781
|
+
|
|
8782
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8495
8783
|
|
|
8496
8784
|
customGroups?: {
|
|
8497
8785
|
[k: string]: (string | string[]) | undefined
|
|
8498
8786
|
}
|
|
8499
8787
|
|
|
8788
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8789
|
+
|
|
8790
|
+
groups?: (string | string[] | {
|
|
8791
|
+
|
|
8792
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8793
|
+
[k: string]: unknown | undefined
|
|
8794
|
+
})[]
|
|
8795
|
+
}]
|
|
8796
|
+
// ----- perfectionist/sort-maps -----
|
|
8797
|
+
type PerfectionistSortMaps = {
|
|
8798
|
+
|
|
8799
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8800
|
+
|
|
8500
8801
|
ignoreCase?: boolean
|
|
8501
8802
|
|
|
8502
|
-
|
|
8803
|
+
alphabet?: string
|
|
8503
8804
|
|
|
8504
|
-
|
|
8805
|
+
locales?: (string | string[])
|
|
8505
8806
|
|
|
8506
8807
|
order?: ("asc" | "desc")
|
|
8507
8808
|
|
|
8508
|
-
|
|
8509
|
-
|
|
8510
|
-
|
|
8511
|
-
|
|
8809
|
+
customGroups?: ({
|
|
8810
|
+
|
|
8811
|
+
groupName?: string
|
|
8812
|
+
|
|
8813
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
8814
|
+
|
|
8815
|
+
order?: ("desc" | "asc")
|
|
8816
|
+
|
|
8817
|
+
newlinesInside?: ("always" | "never")
|
|
8818
|
+
anyOf?: {
|
|
8819
|
+
|
|
8820
|
+
elementNamePattern?: string
|
|
8821
|
+
}[]
|
|
8822
|
+
} | {
|
|
8823
|
+
|
|
8824
|
+
groupName?: string
|
|
8825
|
+
|
|
8826
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
8827
|
+
|
|
8828
|
+
order?: ("desc" | "asc")
|
|
8829
|
+
|
|
8830
|
+
newlinesInside?: ("always" | "never")
|
|
8831
|
+
|
|
8832
|
+
elementNamePattern?: string
|
|
8833
|
+
})[]
|
|
8834
|
+
useConfigurationIf?: {
|
|
8835
|
+
allNamesMatchPattern?: string
|
|
8836
|
+
}
|
|
8512
8837
|
|
|
8513
|
-
partitionByComment?: (string[] | boolean | string
|
|
8838
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
8839
|
+
block?: (string[] | boolean | string)
|
|
8840
|
+
line?: (string[] | boolean | string)
|
|
8841
|
+
[k: string]: unknown | undefined
|
|
8842
|
+
})
|
|
8514
8843
|
|
|
8515
8844
|
partitionByNewLine?: boolean
|
|
8516
8845
|
|
|
8846
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8847
|
+
|
|
8848
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8849
|
+
|
|
8850
|
+
groups?: (string | string[] | {
|
|
8851
|
+
|
|
8852
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8853
|
+
[k: string]: unknown | undefined
|
|
8854
|
+
})[]
|
|
8855
|
+
}[]
|
|
8856
|
+
// ----- perfectionist/sort-modules -----
|
|
8857
|
+
type PerfectionistSortModules = []|[{
|
|
8858
|
+
|
|
8517
8859
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8518
8860
|
|
|
8519
8861
|
ignoreCase?: boolean
|
|
8520
8862
|
|
|
8863
|
+
alphabet?: string
|
|
8864
|
+
|
|
8521
8865
|
locales?: (string | string[])
|
|
8522
8866
|
|
|
8523
8867
|
order?: ("asc" | "desc")
|
|
8524
8868
|
|
|
8525
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
8526
|
-
}]
|
|
8527
|
-
// ----- perfectionist/sort-modules -----
|
|
8528
|
-
type PerfectionistSortModules = []|[{
|
|
8529
|
-
|
|
8530
8869
|
customGroups?: ({
|
|
8531
8870
|
|
|
8532
8871
|
groupName?: string
|
|
@@ -8534,14 +8873,14 @@ type PerfectionistSortModules = []|[{
|
|
|
8534
8873
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
8535
8874
|
|
|
8536
8875
|
order?: ("desc" | "asc")
|
|
8876
|
+
|
|
8877
|
+
newlinesInside?: ("always" | "never")
|
|
8537
8878
|
anyOf?: {
|
|
8538
8879
|
|
|
8539
|
-
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
8540
|
-
|
|
8541
|
-
elementValuePattern?: string
|
|
8542
|
-
|
|
8543
8880
|
decoratorNamePattern?: string
|
|
8544
8881
|
|
|
8882
|
+
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
8883
|
+
|
|
8545
8884
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
8546
8885
|
|
|
8547
8886
|
elementNamePattern?: string
|
|
@@ -8554,113 +8893,225 @@ type PerfectionistSortModules = []|[{
|
|
|
8554
8893
|
|
|
8555
8894
|
order?: ("desc" | "asc")
|
|
8556
8895
|
|
|
8557
|
-
|
|
8558
|
-
|
|
8559
|
-
elementValuePattern?: string
|
|
8896
|
+
newlinesInside?: ("always" | "never")
|
|
8560
8897
|
|
|
8561
8898
|
decoratorNamePattern?: string
|
|
8562
8899
|
|
|
8900
|
+
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
8901
|
+
|
|
8563
8902
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
8564
8903
|
|
|
8565
8904
|
elementNamePattern?: string
|
|
8566
8905
|
})[]
|
|
8567
8906
|
|
|
8568
|
-
partitionByComment?: (string[] | boolean | string
|
|
8907
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
8908
|
+
block?: (string[] | boolean | string)
|
|
8909
|
+
line?: (string[] | boolean | string)
|
|
8910
|
+
[k: string]: unknown | undefined
|
|
8911
|
+
})
|
|
8569
8912
|
|
|
8570
8913
|
partitionByNewLine?: boolean
|
|
8571
8914
|
|
|
8572
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8573
|
-
|
|
8574
8915
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8575
8916
|
|
|
8917
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8918
|
+
|
|
8919
|
+
groups?: (string | string[] | {
|
|
8920
|
+
|
|
8921
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8922
|
+
[k: string]: unknown | undefined
|
|
8923
|
+
})[]
|
|
8924
|
+
}]
|
|
8925
|
+
// ----- perfectionist/sort-named-exports -----
|
|
8926
|
+
type PerfectionistSortNamedExports = []|[{
|
|
8927
|
+
|
|
8928
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8929
|
+
|
|
8576
8930
|
ignoreCase?: boolean
|
|
8577
8931
|
|
|
8578
|
-
|
|
8932
|
+
alphabet?: string
|
|
8579
8933
|
|
|
8580
|
-
|
|
8934
|
+
locales?: (string | string[])
|
|
8581
8935
|
|
|
8582
8936
|
order?: ("asc" | "desc")
|
|
8583
8937
|
|
|
8584
|
-
|
|
8585
|
-
}]
|
|
8586
|
-
// ----- perfectionist/sort-named-exports -----
|
|
8587
|
-
type PerfectionistSortNamedExports = []|[{
|
|
8938
|
+
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
8588
8939
|
|
|
8589
|
-
|
|
8940
|
+
ignoreAlias?: boolean
|
|
8590
8941
|
|
|
8591
|
-
|
|
8942
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
8943
|
+
block?: (string[] | boolean | string)
|
|
8944
|
+
line?: (string[] | boolean | string)
|
|
8945
|
+
[k: string]: unknown | undefined
|
|
8946
|
+
})
|
|
8592
8947
|
|
|
8593
8948
|
partitionByNewLine?: boolean
|
|
8594
8949
|
|
|
8950
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8951
|
+
}]
|
|
8952
|
+
// ----- perfectionist/sort-named-imports -----
|
|
8953
|
+
type PerfectionistSortNamedImports = []|[{
|
|
8954
|
+
|
|
8595
8955
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8596
8956
|
|
|
8597
8957
|
ignoreCase?: boolean
|
|
8598
8958
|
|
|
8959
|
+
alphabet?: string
|
|
8960
|
+
|
|
8599
8961
|
locales?: (string | string[])
|
|
8600
8962
|
|
|
8601
8963
|
order?: ("asc" | "desc")
|
|
8602
8964
|
|
|
8603
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
8604
|
-
}]
|
|
8605
|
-
// ----- perfectionist/sort-named-imports -----
|
|
8606
|
-
type PerfectionistSortNamedImports = []|[{
|
|
8607
|
-
|
|
8608
|
-
partitionByComment?: (string[] | boolean | string)
|
|
8609
|
-
|
|
8610
8965
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
8611
8966
|
|
|
8612
8967
|
ignoreAlias?: boolean
|
|
8613
8968
|
|
|
8969
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
8970
|
+
block?: (string[] | boolean | string)
|
|
8971
|
+
line?: (string[] | boolean | string)
|
|
8972
|
+
[k: string]: unknown | undefined
|
|
8973
|
+
})
|
|
8974
|
+
|
|
8614
8975
|
partitionByNewLine?: boolean
|
|
8615
8976
|
|
|
8977
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8978
|
+
}]
|
|
8979
|
+
// ----- perfectionist/sort-object-types -----
|
|
8980
|
+
type PerfectionistSortObjectTypes = {
|
|
8981
|
+
|
|
8616
8982
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8617
8983
|
|
|
8618
8984
|
ignoreCase?: boolean
|
|
8619
8985
|
|
|
8986
|
+
alphabet?: string
|
|
8987
|
+
|
|
8620
8988
|
locales?: (string | string[])
|
|
8621
8989
|
|
|
8622
8990
|
order?: ("asc" | "desc")
|
|
8623
8991
|
|
|
8624
|
-
|
|
8625
|
-
|
|
8626
|
-
|
|
8627
|
-
|
|
8628
|
-
|
|
8629
|
-
|
|
8992
|
+
ignorePattern?: string[]
|
|
8993
|
+
useConfigurationIf?: {
|
|
8994
|
+
allNamesMatchPattern?: string
|
|
8995
|
+
declarationMatchesPattern?: string
|
|
8996
|
+
}
|
|
8997
|
+
customGroups?: ({
|
|
8998
|
+
[k: string]: (string | string[]) | undefined
|
|
8999
|
+
} | ({
|
|
9000
|
+
|
|
9001
|
+
groupName?: string
|
|
9002
|
+
|
|
9003
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9004
|
+
|
|
9005
|
+
order?: ("desc" | "asc")
|
|
9006
|
+
|
|
9007
|
+
newlinesInside?: ("always" | "never")
|
|
9008
|
+
anyOf?: {
|
|
9009
|
+
|
|
9010
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9011
|
+
|
|
9012
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9013
|
+
|
|
9014
|
+
elementNamePattern?: string
|
|
9015
|
+
}[]
|
|
9016
|
+
} | {
|
|
9017
|
+
|
|
9018
|
+
groupName?: string
|
|
9019
|
+
|
|
9020
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9021
|
+
|
|
9022
|
+
order?: ("desc" | "asc")
|
|
9023
|
+
|
|
9024
|
+
newlinesInside?: ("always" | "never")
|
|
9025
|
+
|
|
9026
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9027
|
+
|
|
9028
|
+
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9029
|
+
|
|
9030
|
+
elementNamePattern?: string
|
|
9031
|
+
})[])
|
|
8630
9032
|
|
|
8631
9033
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
8632
9034
|
|
|
8633
|
-
|
|
9035
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8634
9036
|
|
|
8635
|
-
|
|
9037
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9038
|
+
block?: (string[] | boolean | string)
|
|
9039
|
+
line?: (string[] | boolean | string)
|
|
9040
|
+
[k: string]: unknown | undefined
|
|
9041
|
+
})
|
|
9042
|
+
|
|
9043
|
+
partitionByNewLine?: boolean
|
|
8636
9044
|
|
|
8637
9045
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8638
9046
|
|
|
8639
|
-
|
|
8640
|
-
|
|
8641
|
-
|
|
9047
|
+
groups?: (string | string[] | {
|
|
9048
|
+
|
|
9049
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9050
|
+
[k: string]: unknown | undefined
|
|
9051
|
+
})[]
|
|
9052
|
+
}[]
|
|
9053
|
+
// ----- perfectionist/sort-objects -----
|
|
9054
|
+
type PerfectionistSortObjects = {
|
|
9055
|
+
|
|
9056
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8642
9057
|
|
|
8643
9058
|
ignoreCase?: boolean
|
|
8644
9059
|
|
|
8645
|
-
|
|
9060
|
+
alphabet?: string
|
|
8646
9061
|
|
|
8647
|
-
|
|
9062
|
+
locales?: (string | string[])
|
|
8648
9063
|
|
|
8649
9064
|
order?: ("asc" | "desc")
|
|
8650
9065
|
|
|
8651
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
8652
|
-
}]
|
|
8653
|
-
// ----- perfectionist/sort-objects -----
|
|
8654
|
-
type PerfectionistSortObjects = []|[{
|
|
8655
|
-
|
|
8656
9066
|
destructuredObjects?: (boolean | {
|
|
8657
9067
|
|
|
8658
9068
|
groups?: boolean
|
|
8659
9069
|
})
|
|
8660
9070
|
|
|
8661
9071
|
ignorePattern?: string[]
|
|
8662
|
-
|
|
8663
|
-
|
|
9072
|
+
useConfigurationIf?: {
|
|
9073
|
+
allNamesMatchPattern?: string
|
|
9074
|
+
callingFunctionNamePattern?: string
|
|
9075
|
+
}
|
|
9076
|
+
customGroups?: ({
|
|
9077
|
+
[k: string]: (string | string[]) | undefined
|
|
9078
|
+
} | ({
|
|
9079
|
+
|
|
9080
|
+
groupName?: string
|
|
9081
|
+
|
|
9082
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9083
|
+
|
|
9084
|
+
order?: ("desc" | "asc")
|
|
9085
|
+
|
|
9086
|
+
newlinesInside?: ("always" | "never")
|
|
9087
|
+
anyOf?: {
|
|
9088
|
+
|
|
9089
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9090
|
+
|
|
9091
|
+
selector?: ("member" | "method" | "multiline" | "property")
|
|
9092
|
+
|
|
9093
|
+
elementValuePattern?: string
|
|
9094
|
+
|
|
9095
|
+
elementNamePattern?: string
|
|
9096
|
+
}[]
|
|
9097
|
+
} | {
|
|
9098
|
+
|
|
9099
|
+
groupName?: string
|
|
9100
|
+
|
|
9101
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9102
|
+
|
|
9103
|
+
order?: ("desc" | "asc")
|
|
9104
|
+
|
|
9105
|
+
newlinesInside?: ("always" | "never")
|
|
9106
|
+
|
|
9107
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
9108
|
+
|
|
9109
|
+
selector?: ("member" | "method" | "multiline" | "property")
|
|
9110
|
+
|
|
9111
|
+
elementValuePattern?: string
|
|
9112
|
+
|
|
9113
|
+
elementNamePattern?: string
|
|
9114
|
+
})[])
|
|
8664
9115
|
|
|
8665
9116
|
destructureOnly?: boolean
|
|
8666
9117
|
|
|
@@ -8668,45 +9119,90 @@ type PerfectionistSortObjects = []|[{
|
|
|
8668
9119
|
|
|
8669
9120
|
styledComponents?: boolean
|
|
8670
9121
|
|
|
8671
|
-
|
|
9122
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8672
9123
|
|
|
8673
|
-
|
|
9124
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9125
|
+
block?: (string[] | boolean | string)
|
|
9126
|
+
line?: (string[] | boolean | string)
|
|
9127
|
+
[k: string]: unknown | undefined
|
|
9128
|
+
})
|
|
9129
|
+
|
|
9130
|
+
partitionByNewLine?: boolean
|
|
8674
9131
|
|
|
8675
9132
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8676
9133
|
|
|
8677
|
-
|
|
8678
|
-
|
|
8679
|
-
|
|
9134
|
+
groups?: (string | string[] | {
|
|
9135
|
+
|
|
9136
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9137
|
+
[k: string]: unknown | undefined
|
|
9138
|
+
})[]
|
|
9139
|
+
}[]
|
|
9140
|
+
// ----- perfectionist/sort-sets -----
|
|
9141
|
+
type PerfectionistSortSets = {
|
|
9142
|
+
|
|
9143
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8680
9144
|
|
|
8681
9145
|
ignoreCase?: boolean
|
|
8682
9146
|
|
|
8683
|
-
|
|
9147
|
+
alphabet?: string
|
|
8684
9148
|
|
|
8685
|
-
|
|
9149
|
+
locales?: (string | string[])
|
|
8686
9150
|
|
|
8687
9151
|
order?: ("asc" | "desc")
|
|
8688
9152
|
|
|
8689
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
8690
|
-
}]
|
|
8691
|
-
// ----- perfectionist/sort-sets -----
|
|
8692
|
-
type PerfectionistSortSets = []|[{
|
|
8693
|
-
|
|
8694
|
-
partitionByComment?: (string[] | boolean | string)
|
|
8695
|
-
|
|
8696
9153
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
8697
9154
|
|
|
8698
|
-
|
|
9155
|
+
customGroups?: ({
|
|
9156
|
+
|
|
9157
|
+
groupName?: string
|
|
9158
|
+
|
|
9159
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9160
|
+
|
|
9161
|
+
order?: ("desc" | "asc")
|
|
9162
|
+
|
|
9163
|
+
newlinesInside?: ("always" | "never")
|
|
9164
|
+
anyOf?: {
|
|
9165
|
+
|
|
9166
|
+
selector?: ("literal" | "spread")
|
|
9167
|
+
|
|
9168
|
+
elementNamePattern?: string
|
|
9169
|
+
}[]
|
|
9170
|
+
} | {
|
|
9171
|
+
|
|
9172
|
+
groupName?: string
|
|
9173
|
+
|
|
9174
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9175
|
+
|
|
9176
|
+
order?: ("desc" | "asc")
|
|
9177
|
+
|
|
9178
|
+
newlinesInside?: ("always" | "never")
|
|
9179
|
+
|
|
9180
|
+
selector?: ("literal" | "spread")
|
|
9181
|
+
|
|
9182
|
+
elementNamePattern?: string
|
|
9183
|
+
})[]
|
|
9184
|
+
useConfigurationIf?: {
|
|
9185
|
+
allNamesMatchPattern?: string
|
|
9186
|
+
}
|
|
8699
9187
|
|
|
8700
|
-
|
|
9188
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
8701
9189
|
|
|
8702
|
-
|
|
9190
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9191
|
+
block?: (string[] | boolean | string)
|
|
9192
|
+
line?: (string[] | boolean | string)
|
|
9193
|
+
[k: string]: unknown | undefined
|
|
9194
|
+
})
|
|
8703
9195
|
|
|
8704
|
-
|
|
9196
|
+
partitionByNewLine?: boolean
|
|
8705
9197
|
|
|
8706
|
-
|
|
9198
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8707
9199
|
|
|
8708
|
-
|
|
8709
|
-
|
|
9200
|
+
groups?: (string | string[] | {
|
|
9201
|
+
|
|
9202
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9203
|
+
[k: string]: unknown | undefined
|
|
9204
|
+
})[]
|
|
9205
|
+
}[]
|
|
8710
9206
|
// ----- perfectionist/sort-switch-case -----
|
|
8711
9207
|
type PerfectionistSortSwitchCase = []|[{
|
|
8712
9208
|
|
|
@@ -8714,49 +9210,67 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
8714
9210
|
|
|
8715
9211
|
ignoreCase?: boolean
|
|
8716
9212
|
|
|
9213
|
+
alphabet?: string
|
|
9214
|
+
|
|
8717
9215
|
locales?: (string | string[])
|
|
8718
9216
|
|
|
8719
9217
|
order?: ("asc" | "desc")
|
|
8720
9218
|
|
|
8721
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
9219
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8722
9220
|
}]
|
|
8723
9221
|
// ----- perfectionist/sort-union-types -----
|
|
8724
9222
|
type PerfectionistSortUnionTypes = []|[{
|
|
8725
9223
|
|
|
8726
|
-
partitionByComment?: (string[] | boolean | string)
|
|
8727
|
-
|
|
8728
|
-
partitionByNewLine?: boolean
|
|
8729
|
-
|
|
8730
9224
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8731
9225
|
|
|
8732
|
-
newlinesBetween?: ("ignore" | "always" | "never")
|
|
8733
|
-
|
|
8734
9226
|
ignoreCase?: boolean
|
|
8735
9227
|
|
|
8736
|
-
|
|
9228
|
+
alphabet?: string
|
|
8737
9229
|
|
|
8738
|
-
|
|
9230
|
+
locales?: (string | string[])
|
|
8739
9231
|
|
|
8740
9232
|
order?: ("asc" | "desc")
|
|
8741
9233
|
|
|
8742
|
-
|
|
9234
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9235
|
+
block?: (string[] | boolean | string)
|
|
9236
|
+
line?: (string[] | boolean | string)
|
|
9237
|
+
[k: string]: unknown | undefined
|
|
9238
|
+
})
|
|
9239
|
+
|
|
9240
|
+
partitionByNewLine?: boolean
|
|
9241
|
+
|
|
9242
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9243
|
+
|
|
9244
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9245
|
+
|
|
9246
|
+
groups?: (string | string[] | {
|
|
9247
|
+
|
|
9248
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9249
|
+
[k: string]: unknown | undefined
|
|
9250
|
+
})[]
|
|
8743
9251
|
}]
|
|
8744
9252
|
// ----- perfectionist/sort-variable-declarations -----
|
|
8745
9253
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
8746
9254
|
|
|
8747
|
-
partitionByComment?: (string[] | boolean | string)
|
|
8748
|
-
|
|
8749
|
-
partitionByNewLine?: boolean
|
|
8750
|
-
|
|
8751
9255
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
8752
9256
|
|
|
8753
9257
|
ignoreCase?: boolean
|
|
8754
9258
|
|
|
9259
|
+
alphabet?: string
|
|
9260
|
+
|
|
8755
9261
|
locales?: (string | string[])
|
|
8756
9262
|
|
|
8757
9263
|
order?: ("asc" | "desc")
|
|
8758
9264
|
|
|
8759
|
-
|
|
9265
|
+
partitionByComment?: (string[] | boolean | string | {
|
|
9266
|
+
block?: (string[] | boolean | string)
|
|
9267
|
+
line?: (string[] | boolean | string)
|
|
9268
|
+
[k: string]: unknown | undefined
|
|
9269
|
+
})
|
|
9270
|
+
|
|
9271
|
+
partitionByNewLine?: boolean
|
|
9272
|
+
|
|
9273
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
8760
9274
|
}]
|
|
8761
9275
|
// ----- regexp/hexadecimal-escape -----
|
|
8762
9276
|
type RegexpHexadecimalEscape = []|[("always" | "never")]
|
|
@@ -8938,8 +9452,7 @@ type TestNoRestrictedViMethods = []|[{
|
|
|
8938
9452
|
}]
|
|
8939
9453
|
// ----- test/no-standalone-expect -----
|
|
8940
9454
|
type TestNoStandaloneExpect = []|[{
|
|
8941
|
-
|
|
8942
|
-
[k: string]: unknown | undefined
|
|
9455
|
+
additionalTestBlockFunctions?: string[]
|
|
8943
9456
|
}]
|
|
8944
9457
|
// ----- test/prefer-expect-assertions -----
|
|
8945
9458
|
type TestPreferExpectAssertions = []|[{
|
|
@@ -9257,6 +9770,7 @@ type VueAttributeHyphenation = []|[("always" | "never")]|[("always" | "never"),
|
|
|
9257
9770
|
} & {
|
|
9258
9771
|
[k: string]: unknown | undefined
|
|
9259
9772
|
})[]
|
|
9773
|
+
ignoreTags?: string[]
|
|
9260
9774
|
}]
|
|
9261
9775
|
// ----- vue/attributes-order -----
|
|
9262
9776
|
type VueAttributesOrder = []|[{
|
|
@@ -9472,6 +9986,7 @@ type VueKeySpacing = []|[({
|
|
|
9472
9986
|
mode?: ("strict" | "minimum")
|
|
9473
9987
|
beforeColon?: boolean
|
|
9474
9988
|
afterColon?: boolean
|
|
9989
|
+
ignoredNodes?: ("ObjectExpression" | "ObjectPattern" | "ImportDeclaration" | "ExportNamedDeclaration" | "ExportAllDeclaration" | "TSTypeLiteral" | "TSInterfaceBody" | "ClassBody")[]
|
|
9475
9990
|
} | {
|
|
9476
9991
|
singleLine?: {
|
|
9477
9992
|
mode?: ("strict" | "minimum")
|
|
@@ -9973,6 +10488,10 @@ type VueNoDeprecatedSlotAttribute = []|[{
|
|
|
9973
10488
|
type VueNoDupeKeys = []|[{
|
|
9974
10489
|
groups?: unknown[]
|
|
9975
10490
|
}]
|
|
10491
|
+
// ----- vue/no-duplicate-attr-inheritance -----
|
|
10492
|
+
type VueNoDuplicateAttrInheritance = []|[{
|
|
10493
|
+
checkMultiRootNodes?: boolean
|
|
10494
|
+
}]
|
|
9976
10495
|
// ----- vue/no-duplicate-attributes -----
|
|
9977
10496
|
type VueNoDuplicateAttributes = []|[{
|
|
9978
10497
|
allowCoexistClass?: boolean
|
|
@@ -9994,6 +10513,7 @@ type VueNoExtraParens = ([]|["functions"] | []|["all"]|["all", {
|
|
|
9994
10513
|
enforceForNewInMemberExpressions?: boolean
|
|
9995
10514
|
enforceForFunctionPrototypeMethods?: boolean
|
|
9996
10515
|
allowParensAfterCommentPattern?: string
|
|
10516
|
+
nestedConditionalExpressions?: boolean
|
|
9997
10517
|
}])
|
|
9998
10518
|
// ----- vue/no-irregular-whitespace -----
|
|
9999
10519
|
type VueNoIrregularWhitespace = []|[{
|
|
@@ -10208,6 +10728,7 @@ type VueNoUselessVBind = []|[{
|
|
|
10208
10728
|
// ----- vue/no-v-text-v-html-on-component -----
|
|
10209
10729
|
type VueNoVTextVHtmlOnComponent = []|[{
|
|
10210
10730
|
allow?: string[]
|
|
10731
|
+
ignoreElementNamespaces?: boolean
|
|
10211
10732
|
}]
|
|
10212
10733
|
// ----- vue/object-curly-newline -----
|
|
10213
10734
|
type VueObjectCurlyNewline = []|[((("always" | "never") | {
|
|
@@ -10328,6 +10849,10 @@ type VueRequirePropComment = []|[{
|
|
|
10328
10849
|
type VueRequireToggleInsideTransition = []|[{
|
|
10329
10850
|
additionalDirectives?: string[]
|
|
10330
10851
|
}]
|
|
10852
|
+
// ----- vue/restricted-component-names -----
|
|
10853
|
+
type VueRestrictedComponentNames = []|[{
|
|
10854
|
+
allow?: string[]
|
|
10855
|
+
}]
|
|
10331
10856
|
// ----- vue/return-in-computed-property -----
|
|
10332
10857
|
type VueReturnInComputedProperty = []|[{
|
|
10333
10858
|
treatUndefinedAsUnspecified?: boolean
|
|
@@ -10349,6 +10874,8 @@ type VueSinglelineHtmlElementContentNewline = []|[{
|
|
|
10349
10874
|
ignores?: string[]
|
|
10350
10875
|
externalIgnores?: string[]
|
|
10351
10876
|
}]
|
|
10877
|
+
// ----- vue/slot-name-casing -----
|
|
10878
|
+
type VueSlotNameCasing = []|[("camelCase" | "kebab-case" | "singleword")]
|
|
10352
10879
|
// ----- vue/sort-keys -----
|
|
10353
10880
|
type VueSortKeys = []|[("asc" | "desc")]|[("asc" | "desc"), {
|
|
10354
10881
|
caseSensitive?: boolean
|
|
@@ -10392,6 +10919,7 @@ type VueVOnEventHyphenation = []|[("always" | "never")]|[("always" | "never"), {
|
|
|
10392
10919
|
} & {
|
|
10393
10920
|
[k: string]: unknown | undefined
|
|
10394
10921
|
})[]
|
|
10922
|
+
ignoreTags?: string[]
|
|
10395
10923
|
}]
|
|
10396
10924
|
// ----- vue/v-on-function-call -----
|
|
10397
10925
|
type VueVOnFunctionCall = []|[("always" | "never")]|[("always" | "never"), {
|
|
@@ -11050,7 +11578,7 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
|
|
|
11050
11578
|
*
|
|
11051
11579
|
* @default false
|
|
11052
11580
|
*/
|
|
11053
|
-
rotki?: boolean;
|
|
11581
|
+
rotki?: boolean | OptionsOverrides;
|
|
11054
11582
|
/**
|
|
11055
11583
|
* Enable vue-i18n linting support.
|
|
11056
11584
|
* Requires installing:
|