@luxass/eslint-config 5.3.2 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { FlatConfigComposer } from "eslint-flat-config-utils";
2
+ import { Linter } from "eslint";
2
3
  import { StylisticCustomizeOptions } from "@stylistic/eslint-plugin";
3
4
  import { ParserOptions } from "@typescript-eslint/parser";
4
5
  import { FlatGitignoreOptions } from "eslint-config-flat-gitignore";
5
6
  import { Options } from "eslint-processor-vue-blocks";
6
- import { Linter } from "eslint";
7
7
 
8
8
  //#region src/configs/stylistic.d.ts
9
9
  type StylisticConfig = Pick<StylisticCustomizeOptions, "jsx" | "indent" | "quotes" | "semi">;
@@ -472,6 +472,13 @@ interface TypeScriptOptions {
472
472
  * @default "app"
473
473
  */
474
474
  type?: ProjectType;
475
+ /**
476
+ * Enable erasable syntax only rules.
477
+ *
478
+ * @see https://github.com/JoshuaKGoldberg/eslint-plugin-erasable-syntax-only
479
+ * @default false
480
+ */
481
+ erasableOnly?: boolean;
475
482
  }
476
483
  declare function typescript(options?: TypeScriptOptions): Promise<TypedFlatConfigItem[]>;
477
484
  //#endregion
@@ -1278,7 +1285,7 @@ interface RuleOptions {
1278
1285
  */
1279
1286
  'jsdoc/check-alignment'?: Linter.RuleEntry<JsdocCheckAlignment>;
1280
1287
  /**
1281
- * Ensures that (JavaScript) examples within JSDoc adhere to ESLint rules.
1288
+ * @deprecated - Use `getJsdocProcessorPlugin` processor; ensures that (JavaScript) samples within `@example` tags adhere to ESLint rules.
1282
1289
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-examples.md#repos-sticky-header
1283
1290
  */
1284
1291
  'jsdoc/check-examples'?: Linter.RuleEntry<JsdocCheckExamples>;
@@ -1293,7 +1300,7 @@ interface RuleOptions {
1293
1300
  */
1294
1301
  'jsdoc/check-line-alignment'?: Linter.RuleEntry<JsdocCheckLineAlignment>;
1295
1302
  /**
1296
- * Ensures that parameter names in JSDoc match those in the function declaration.
1303
+ * Checks for dupe `@param` names, that nested param names have roots, and that parameter names in function declarations match JSDoc param names.
1297
1304
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-param-names.md#repos-sticky-header
1298
1305
  */
1299
1306
  'jsdoc/check-param-names'?: Linter.RuleEntry<JsdocCheckParamNames>;
@@ -1318,7 +1325,7 @@ interface RuleOptions {
1318
1325
  */
1319
1326
  'jsdoc/check-template-names'?: Linter.RuleEntry<[]>;
1320
1327
  /**
1321
- * Reports invalid types.
1328
+ * Reports types deemed invalid (customizable and with defaults, for preventing and/or recommending replacements).
1322
1329
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-types.md#repos-sticky-header
1323
1330
  */
1324
1331
  'jsdoc/check-types'?: Linter.RuleEntry<JsdocCheckTypes>;
@@ -1333,12 +1340,17 @@ interface RuleOptions {
1333
1340
  */
1334
1341
  'jsdoc/convert-to-jsdoc-comments'?: Linter.RuleEntry<JsdocConvertToJsdocComments>;
1335
1342
  /**
1336
- * Expects specific tags to be empty of any content.
1343
+ * Checks tags that are expected to be empty (e.g., `@abstract` or `@async`), reporting if they have content
1337
1344
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/empty-tags.md#repos-sticky-header
1338
1345
  */
1339
1346
  'jsdoc/empty-tags'?: Linter.RuleEntry<JsdocEmptyTags>;
1340
1347
  /**
1341
- * Reports an issue with any non-constructor function using `@implements`.
1348
+ * Reports use of JSDoc tags in non-tag positions (in the default "typescript" mode).
1349
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/escape-inline-tags.md#repos-sticky-header
1350
+ */
1351
+ 'jsdoc/escape-inline-tags'?: Linter.RuleEntry<JsdocEscapeInlineTags>;
1352
+ /**
1353
+ * Prohibits use of `@implements` on non-constructor functions (to enforce the tag only being used on classes/constructors).
1342
1354
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/implements-on-classes.md#repos-sticky-header
1343
1355
  */
1344
1356
  'jsdoc/implements-on-classes'?: Linter.RuleEntry<JsdocImplementsOnClasses>;
@@ -1368,17 +1380,17 @@ interface RuleOptions {
1368
1380
  */
1369
1381
  'jsdoc/match-name'?: Linter.RuleEntry<JsdocMatchName>;
1370
1382
  /**
1371
- * Controls how and whether jsdoc blocks can be expressed as single or multiple line blocks.
1383
+ * Controls how and whether JSDoc blocks can be expressed as single or multiple line blocks.
1372
1384
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/multiline-blocks.md#repos-sticky-header
1373
1385
  */
1374
1386
  'jsdoc/multiline-blocks'?: Linter.RuleEntry<JsdocMultilineBlocks>;
1375
1387
  /**
1376
- * This rule checks for multi-line-style comments which fail to meet the criteria of a jsdoc block.
1388
+ * This rule checks for multi-line-style comments which fail to meet the criteria of a JSDoc block.
1377
1389
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-bad-blocks.md#repos-sticky-header
1378
1390
  */
1379
1391
  'jsdoc/no-bad-blocks'?: Linter.RuleEntry<JsdocNoBadBlocks>;
1380
1392
  /**
1381
- * Detects and removes extra lines of a blank block description
1393
+ * If tags are present, this rule will prevent empty lines in the block description. If no tags are present, this rule will prevent extra empty lines in the block description.
1382
1394
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-blank-block-descriptions.md#repos-sticky-header
1383
1395
  */
1384
1396
  'jsdoc/no-blank-block-descriptions'?: Linter.RuleEntry<[]>;
@@ -1408,22 +1420,37 @@ interface RuleOptions {
1408
1420
  */
1409
1421
  'jsdoc/no-restricted-syntax'?: Linter.RuleEntry<JsdocNoRestrictedSyntax>;
1410
1422
  /**
1411
- * This rule reports types being used on `@param` or `@returns`.
1423
+ * This rule reports types being used on `@param` or `@returns` (redundant with TypeScript).
1412
1424
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-types.md#repos-sticky-header
1413
1425
  */
1414
1426
  'jsdoc/no-types'?: Linter.RuleEntry<JsdocNoTypes>;
1415
1427
  /**
1416
- * Checks that types in jsdoc comments are defined.
1428
+ * Besides some expected built-in types, prohibits any types not specified as globals or within `@typedef`.
1417
1429
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-undefined-types.md#repos-sticky-header
1418
1430
  */
1419
1431
  'jsdoc/no-undefined-types'?: Linter.RuleEntry<JsdocNoUndefinedTypes>;
1432
+ /**
1433
+ * Prefer `@import` tags to inline `import()` statements.
1434
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/prefer-import-tag.md#repos-sticky-header
1435
+ */
1436
+ 'jsdoc/prefer-import-tag'?: Linter.RuleEntry<JsdocPreferImportTag>;
1437
+ /**
1438
+ * Reports use of `any` or `*` type
1439
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/reject-any-type.md#repos-sticky-header
1440
+ */
1441
+ 'jsdoc/reject-any-type'?: Linter.RuleEntry<[]>;
1442
+ /**
1443
+ * Reports use of `Function` type
1444
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/reject-function-type.md#repos-sticky-header
1445
+ */
1446
+ 'jsdoc/reject-function-type'?: Linter.RuleEntry<[]>;
1420
1447
  /**
1421
1448
  * Requires that each JSDoc line starts with an `*`.
1422
1449
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-asterisk-prefix.md#repos-sticky-header
1423
1450
  */
1424
1451
  'jsdoc/require-asterisk-prefix'?: Linter.RuleEntry<JsdocRequireAsteriskPrefix>;
1425
1452
  /**
1426
- * Requires that all functions have a description.
1453
+ * Requires that all functions (and potentially other contexts) have a description.
1427
1454
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-description.md#repos-sticky-header
1428
1455
  */
1429
1456
  'jsdoc/require-description'?: Linter.RuleEntry<JsdocRequireDescription>;
@@ -1433,7 +1460,7 @@ interface RuleOptions {
1433
1460
  */
1434
1461
  'jsdoc/require-description-complete-sentence'?: Linter.RuleEntry<JsdocRequireDescriptionCompleteSentence>;
1435
1462
  /**
1436
- * Requires that all functions have examples.
1463
+ * Requires that all functions (and potentially other contexts) have examples.
1437
1464
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-example.md#repos-sticky-header
1438
1465
  */
1439
1466
  'jsdoc/require-example'?: Linter.RuleEntry<JsdocRequireExample>;
@@ -1443,17 +1470,27 @@ interface RuleOptions {
1443
1470
  */
1444
1471
  'jsdoc/require-file-overview'?: Linter.RuleEntry<JsdocRequireFileOverview>;
1445
1472
  /**
1446
- * Requires a hyphen before the `@param` description.
1473
+ * Requires a hyphen before the `@param` description (and optionally before `@property` descriptions).
1447
1474
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-hyphen-before-param-description.md#repos-sticky-header
1448
1475
  */
1449
1476
  'jsdoc/require-hyphen-before-param-description'?: Linter.RuleEntry<JsdocRequireHyphenBeforeParamDescription>;
1450
1477
  /**
1451
- * Require JSDoc comments
1478
+ * Checks for presence of JSDoc comments, on functions and potentially other contexts (optionally limited to exports).
1452
1479
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-jsdoc.md#repos-sticky-header
1453
1480
  */
1454
1481
  'jsdoc/require-jsdoc'?: Linter.RuleEntry<JsdocRequireJsdoc>;
1455
1482
  /**
1456
- * Requires that all function parameters are documented.
1483
+ * Requires a description for `@next` tags
1484
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-next-description.md#repos-sticky-header
1485
+ */
1486
+ 'jsdoc/require-next-description'?: Linter.RuleEntry<[]>;
1487
+ /**
1488
+ * Requires a type for `@next` tags
1489
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-next-type.md#repos-sticky-header
1490
+ */
1491
+ 'jsdoc/require-next-type'?: Linter.RuleEntry<[]>;
1492
+ /**
1493
+ * Requires that all function parameters are documented with a `@param` tag.
1457
1494
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param.md#repos-sticky-header
1458
1495
  */
1459
1496
  'jsdoc/require-param'?: Linter.RuleEntry<JsdocRequireParam>;
@@ -1463,12 +1500,12 @@ interface RuleOptions {
1463
1500
  */
1464
1501
  'jsdoc/require-param-description'?: Linter.RuleEntry<JsdocRequireParamDescription>;
1465
1502
  /**
1466
- * Requires that all function parameters have names.
1503
+ * Requires that all `@param` tags have names.
1467
1504
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param-name.md#repos-sticky-header
1468
1505
  */
1469
1506
  'jsdoc/require-param-name'?: Linter.RuleEntry<JsdocRequireParamName>;
1470
1507
  /**
1471
- * Requires that each `@param` tag has a `type` value.
1508
+ * Requires that each `@param` tag has a type value (in curly brackets).
1472
1509
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param-type.md#repos-sticky-header
1473
1510
  */
1474
1511
  'jsdoc/require-param-type'?: Linter.RuleEntry<JsdocRequireParamType>;
@@ -1483,62 +1520,92 @@ interface RuleOptions {
1483
1520
  */
1484
1521
  'jsdoc/require-property-description'?: Linter.RuleEntry<[]>;
1485
1522
  /**
1486
- * Requires that all function `@property` tags have names.
1523
+ * Requires that all `@property` tags have names.
1487
1524
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-name.md#repos-sticky-header
1488
1525
  */
1489
1526
  'jsdoc/require-property-name'?: Linter.RuleEntry<[]>;
1490
1527
  /**
1491
- * Requires that each `@property` tag has a `type` value.
1528
+ * Requires that each `@property` tag has a type value (in curly brackets).
1492
1529
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-type.md#repos-sticky-header
1493
1530
  */
1494
1531
  'jsdoc/require-property-type'?: Linter.RuleEntry<[]>;
1495
1532
  /**
1496
- * Requires that returns are documented.
1533
+ * Requires that returns are documented with `@returns`.
1497
1534
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns.md#repos-sticky-header
1498
1535
  */
1499
1536
  'jsdoc/require-returns'?: Linter.RuleEntry<JsdocRequireReturns>;
1500
1537
  /**
1501
- * Requires a return statement in function body if a `@returns` tag is specified in jsdoc comment.
1538
+ * Requires a return statement in function body if a `@returns` tag is specified in JSDoc comment(and reports if multiple `@returns` tags are present).
1502
1539
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-check.md#repos-sticky-header
1503
1540
  */
1504
1541
  'jsdoc/require-returns-check'?: Linter.RuleEntry<JsdocRequireReturnsCheck>;
1505
1542
  /**
1506
- * Requires that the `@returns` tag has a `description` value.
1543
+ * Requires that the `@returns` tag has a `description` value (not including `void`/`undefined` type returns).
1507
1544
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-description.md#repos-sticky-header
1508
1545
  */
1509
1546
  'jsdoc/require-returns-description'?: Linter.RuleEntry<JsdocRequireReturnsDescription>;
1510
1547
  /**
1511
- * Requires that `@returns` tag has `type` value.
1548
+ * Requires that `@returns` tag has type value (in curly brackets).
1512
1549
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-type.md#repos-sticky-header
1513
1550
  */
1514
1551
  'jsdoc/require-returns-type'?: Linter.RuleEntry<JsdocRequireReturnsType>;
1515
1552
  /**
1516
- * Requires template tags for each generic type parameter
1553
+ * Requires tags be present, optionally for specific contexts
1554
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-tags.md#repos-sticky-header
1555
+ */
1556
+ 'jsdoc/require-tags'?: Linter.RuleEntry<JsdocRequireTags>;
1557
+ /**
1558
+ * Requires `@template` tags be present when type parameters are used.
1517
1559
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-template.md#repos-sticky-header
1518
1560
  */
1519
1561
  'jsdoc/require-template'?: Linter.RuleEntry<JsdocRequireTemplate>;
1520
1562
  /**
1521
- * Requires that throw statements are documented.
1563
+ * Requires a description for `@template` tags
1564
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-template-description.md#repos-sticky-header
1565
+ */
1566
+ 'jsdoc/require-template-description'?: Linter.RuleEntry<[]>;
1567
+ /**
1568
+ * Requires that throw statements are documented with `@throws` tags.
1522
1569
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws.md#repos-sticky-header
1523
1570
  */
1524
1571
  'jsdoc/require-throws'?: Linter.RuleEntry<JsdocRequireThrows>;
1525
1572
  /**
1526
- * Requires yields are documented.
1573
+ * Requires a description for `@throws` tags
1574
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws-description.md#repos-sticky-header
1575
+ */
1576
+ 'jsdoc/require-throws-description'?: Linter.RuleEntry<[]>;
1577
+ /**
1578
+ * Requires a type for `@throws` tags
1579
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws-type.md#repos-sticky-header
1580
+ */
1581
+ 'jsdoc/require-throws-type'?: Linter.RuleEntry<[]>;
1582
+ /**
1583
+ * Requires yields are documented with `@yields` tags.
1527
1584
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields.md#repos-sticky-header
1528
1585
  */
1529
1586
  'jsdoc/require-yields'?: Linter.RuleEntry<JsdocRequireYields>;
1530
1587
  /**
1531
- * Requires a yield statement in function body if a `@yields` tag is specified in jsdoc comment.
1588
+ * Ensures that if a `@yields` is present that a `yield` (or `yield` with a value) is present in the function body (or that if a `@next` is present that there is a yield with a return value present).
1532
1589
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-check.md#repos-sticky-header
1533
1590
  */
1534
1591
  'jsdoc/require-yields-check'?: Linter.RuleEntry<JsdocRequireYieldsCheck>;
1535
1592
  /**
1536
- * Sorts tags by a specified sequence according to tag name.
1593
+ * Requires a description for `@yields` tags
1594
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-description.md#repos-sticky-header
1595
+ */
1596
+ 'jsdoc/require-yields-description'?: Linter.RuleEntry<[]>;
1597
+ /**
1598
+ * Requires a type for `@yields` tags
1599
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-yields-type.md#repos-sticky-header
1600
+ */
1601
+ 'jsdoc/require-yields-type'?: Linter.RuleEntry<[]>;
1602
+ /**
1603
+ * Sorts tags by a specified sequence according to tag name, optionally adding line breaks between tag groups.
1537
1604
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/sort-tags.md#repos-sticky-header
1538
1605
  */
1539
1606
  'jsdoc/sort-tags'?: Linter.RuleEntry<JsdocSortTags>;
1540
1607
  /**
1541
- * Enforces lines (or no lines) between tags.
1608
+ * Enforces lines (or no lines) before, after, or between tags.
1542
1609
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/tag-lines.md#repos-sticky-header
1543
1610
  */
1544
1611
  'jsdoc/tag-lines'?: Linter.RuleEntry<JsdocTagLines>;
@@ -1547,13 +1614,33 @@ interface RuleOptions {
1547
1614
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/text-escaping.md#repos-sticky-header
1548
1615
  */
1549
1616
  'jsdoc/text-escaping'?: Linter.RuleEntry<JsdocTextEscaping>;
1617
+ /**
1618
+ * Prefers either function properties or method signatures
1619
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-method-signature-style.md#repos-sticky-header
1620
+ */
1621
+ 'jsdoc/ts-method-signature-style'?: Linter.RuleEntry<JsdocTsMethodSignatureStyle>;
1622
+ /**
1623
+ * Warns against use of the empty object type
1624
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-no-empty-object-type.md#repos-sticky-header
1625
+ */
1626
+ 'jsdoc/ts-no-empty-object-type'?: Linter.RuleEntry<[]>;
1627
+ /**
1628
+ * Catches unnecessary template expressions such as string expressions within a template literal.
1629
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-no-unnecessary-template-expression.md#repos-sticky-header
1630
+ */
1631
+ 'jsdoc/ts-no-unnecessary-template-expression'?: Linter.RuleEntry<JsdocTsNoUnnecessaryTemplateExpression>;
1632
+ /**
1633
+ * Prefers function types over call signatures when there are no other properties.
1634
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/ts-prefer-function-type.md#repos-sticky-header
1635
+ */
1636
+ 'jsdoc/ts-prefer-function-type'?: Linter.RuleEntry<JsdocTsPreferFunctionType>;
1550
1637
  /**
1551
1638
  * Formats JSDoc type values.
1552
1639
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/type-formatting.md#repos-sticky-header
1553
1640
  */
1554
1641
  'jsdoc/type-formatting'?: Linter.RuleEntry<JsdocTypeFormatting>;
1555
1642
  /**
1556
- * Requires all types to be valid JSDoc or Closure compiler types without syntax errors.
1643
+ * Requires all types/namepaths to be valid JSDoc, Closure compiler, or TypeScript types (configurable in settings).
1557
1644
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/valid-types.md#repos-sticky-header
1558
1645
  */
1559
1646
  'jsdoc/valid-types'?: Linter.RuleEntry<JsdocValidTypes>;
@@ -1889,7 +1976,7 @@ interface RuleOptions {
1889
1976
  * Disallow missing label references
1890
1977
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-label-refs.md
1891
1978
  */
1892
- 'markdown/no-missing-label-refs'?: Linter.RuleEntry<[]>;
1979
+ 'markdown/no-missing-label-refs'?: Linter.RuleEntry<MarkdownNoMissingLabelRefs>;
1893
1980
  /**
1894
1981
  * Disallow link fragments that do not reference valid headings
1895
1982
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-link-fragments.md
@@ -1900,6 +1987,11 @@ interface RuleOptions {
1900
1987
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-multiple-h1.md
1901
1988
  */
1902
1989
  'markdown/no-multiple-h1'?: Linter.RuleEntry<MarkdownNoMultipleH1>;
1990
+ /**
1991
+ * Disallow URLs that match defined reference identifiers
1992
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reference-like-urls.md
1993
+ */
1994
+ 'markdown/no-reference-like-urls'?: Linter.RuleEntry<[]>;
1903
1995
  /**
1904
1996
  * Disallow reversed link and image syntax
1905
1997
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reversed-media-syntax.md
@@ -2881,12 +2973,12 @@ interface RuleOptions {
2881
2973
  */
2882
2974
  'node/no-hide-core-modules'?: Linter.RuleEntry<NodeNoHideCoreModules>;
2883
2975
  /**
2884
- * disallow `import` declarations which import non-existence modules
2976
+ * disallow `import` declarations which import missing modules
2885
2977
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-import.md
2886
2978
  */
2887
2979
  'node/no-missing-import'?: Linter.RuleEntry<NodeNoMissingImport>;
2888
2980
  /**
2889
- * disallow `require()` expressions which import non-existence modules
2981
+ * disallow `require()` expressions which import missing modules
2890
2982
  * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-require.md
2891
2983
  */
2892
2984
  'node/no-missing-require'?: Linter.RuleEntry<NodeNoMissingRequire>;
@@ -3214,6 +3306,11 @@ interface RuleOptions {
3214
3306
  * @see https://github.com/antfu/pnpm-workspace-utils/tree/main/packages/eslint-plugin-pnpm/src/rules/yaml/yaml-no-unused-catalog-item.test.ts
3215
3307
  */
3216
3308
  'pnpm/yaml-no-unused-catalog-item'?: Linter.RuleEntry<[]>;
3309
+ /**
3310
+ * Ensure all package patterns in `pnpm-workspace.yaml` match at least one directory
3311
+ * @see https://github.com/antfu/pnpm-workspace-utils/tree/main/packages/eslint-plugin-pnpm/src/rules/yaml/yaml-valid-packages.test.ts
3312
+ */
3313
+ 'pnpm/yaml-valid-packages'?: Linter.RuleEntry<[]>;
3217
3314
  /**
3218
3315
  * Require using arrow functions for callbacks
3219
3316
  * @see https://eslint.org/docs/latest/rules/prefer-arrow-callback
@@ -3307,11 +3404,6 @@ interface RuleOptions {
3307
3404
  * @see https://eslint.org/docs/latest/rules/radix
3308
3405
  */
3309
3406
  'radix'?: Linter.RuleEntry<Radix>;
3310
- /**
3311
- * Disallow `children` in void DOM elements.
3312
- * @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
3313
- */
3314
- 'react-dom/no-children-in-void-dom-elements'?: Linter.RuleEntry<[]>;
3315
3407
  /**
3316
3408
  * Disallow `dangerouslySetInnerHTML`.
3317
3409
  * @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml
@@ -3343,7 +3435,7 @@ interface RuleOptions {
3343
3435
  */
3344
3436
  'react-dom/no-missing-button-type'?: Linter.RuleEntry<[]>;
3345
3437
  /**
3346
- * Enforces explicit `sandbox` attribute for `iframe` elements.
3438
+ * Enforces explicit `sandbox` prop for `iframe` elements.
3347
3439
  * @see https://eslint-react.xyz/docs/rules/dom-no-missing-iframe-sandbox
3348
3440
  */
3349
3441
  'react-dom/no-missing-iframe-sandbox'?: Linter.RuleEntry<[]>;
@@ -3367,6 +3459,11 @@ interface RuleOptions {
3367
3459
  * @see https://eslint-react.xyz/docs/rules/dom-no-script-url
3368
3460
  */
3369
3461
  'react-dom/no-script-url'?: Linter.RuleEntry<[]>;
3462
+ /**
3463
+ * Disallows the use of string style prop.
3464
+ * @see https://eslint-react.xyz/docs/rules/dom-no-string-style-prop
3465
+ */
3466
+ 'react-dom/no-string-style-prop'?: Linter.RuleEntry<[]>;
3370
3467
  /**
3371
3468
  * Disallow unknown `DOM` property.
3372
3469
  * @see https://eslint-react.xyz/docs/rules/dom-no-unknown-property
@@ -3393,70 +3490,133 @@ interface RuleOptions {
3393
3490
  */
3394
3491
  'react-dom/no-void-elements-with-children'?: Linter.RuleEntry<[]>;
3395
3492
  /**
3396
- * Enforces that a function with the `use` prefix should use at least one Hook inside of it.
3397
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
3493
+ * Enforces React Dom is imported via a namespace import.
3494
+ * @see https://eslint-react.xyz/docs/rules/dom-prefer-namespace-import
3398
3495
  */
3399
- 'react-hooks-extra/ensure-custom-hooks-using-other-hooks'?: Linter.RuleEntry<[]>;
3496
+ 'react-dom/prefer-namespace-import'?: Linter.RuleEntry<[]>;
3400
3497
  /**
3401
- * Disallow unnecessary usage of `useCallback`.
3402
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-callback
3498
+ * Disallow direct calls to the `set` function of `useState` in `useEffect`.
3499
+ * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-effect
3403
3500
  */
3404
- 'react-hooks-extra/ensure-use-callback-has-non-empty-deps'?: Linter.RuleEntry<[]>;
3501
+ 'react-hooks-extra/no-direct-set-state-in-use-effect'?: Linter.RuleEntry<[]>;
3405
3502
  /**
3406
- * Disallow unnecessary usage of `useMemo`.
3407
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
3503
+ * Verifies that automatic effect dependencies are compiled if opted-in
3408
3504
  */
3409
- 'react-hooks-extra/ensure-use-memo-has-non-empty-deps'?: Linter.RuleEntry<[]>;
3505
+ 'react-hooks/automatic-effect-dependencies'?: Linter.RuleEntry<ReactHooksAutomaticEffectDependencies>;
3410
3506
  /**
3411
- * Disallow direct calls to the `set` function of `useState` in `useEffect`.
3412
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-effect
3507
+ * Validates against calling capitalized functions/methods instead of using JSX
3413
3508
  */
3414
- 'react-hooks-extra/no-direct-set-state-in-use-effect'?: Linter.RuleEntry<[]>;
3509
+ 'react-hooks/capitalized-calls'?: Linter.RuleEntry<ReactHooksCapitalizedCalls>;
3415
3510
  /**
3416
- * Disallow direct calls to the `set` function of `useState` in `useLayoutEffect`.
3417
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-direct-set-state-in-use-layout-effect
3511
+ * Validates against higher order functions defining nested components or hooks. Components and hooks should be defined at the module level
3418
3512
  */
3419
- 'react-hooks-extra/no-direct-set-state-in-use-layout-effect'?: Linter.RuleEntry<[]>;
3513
+ 'react-hooks/component-hook-factories'?: Linter.RuleEntry<ReactHooksComponentHookFactories>;
3420
3514
  /**
3421
- * Enforces that a function with the `use` prefix should use at least one Hook inside of it.
3422
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
3515
+ * Validates the compiler configuration options
3423
3516
  */
3424
- 'react-hooks-extra/no-redundant-custom-hook'?: Linter.RuleEntry<[]>;
3517
+ 'react-hooks/config'?: Linter.RuleEntry<ReactHooksConfig>;
3425
3518
  /**
3426
- * Disallow unnecessary usage of `useCallback`.
3427
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-callback
3519
+ * Validates usage of error boundaries instead of try/catch for errors in child components
3428
3520
  */
3429
- 'react-hooks-extra/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>;
3521
+ 'react-hooks/error-boundaries'?: Linter.RuleEntry<ReactHooksErrorBoundaries>;
3430
3522
  /**
3431
- * Disallow unnecessary usage of `useMemo`.
3432
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-memo
3523
+ * verifies the list of dependencies for Hooks like useEffect and similar
3524
+ * @see https://github.com/facebook/react/issues/14920
3433
3525
  */
3434
- 'react-hooks-extra/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>;
3526
+ 'react-hooks/exhaustive-deps'?: Linter.RuleEntry<ReactHooksExhaustiveDeps>;
3435
3527
  /**
3436
- * Enforces that a function with the `use` prefix should use at least one Hook inside of it.
3437
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
3528
+ * Validates usage of fbt
3438
3529
  */
3439
- 'react-hooks-extra/no-unnecessary-use-prefix'?: Linter.RuleEntry<[]>;
3530
+ 'react-hooks/fbt'?: Linter.RuleEntry<ReactHooksFbt>;
3440
3531
  /**
3441
- * Enforces that a function with the `use` prefix should use at least one Hook inside of it.
3442
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-no-unnecessary-use-prefix
3532
+ * Validates usage of `fire`
3443
3533
  */
3444
- 'react-hooks-extra/no-useless-custom-hooks'?: Linter.RuleEntry<[]>;
3534
+ 'react-hooks/fire'?: Linter.RuleEntry<ReactHooksFire>;
3445
3535
  /**
3446
- * Enforces function calls made inside `useState` to be wrapped in an `initializer function`.
3447
- * @see https://eslint-react.xyz/docs/rules/hooks-extra-prefer-use-state-lazy-initialization
3536
+ * Validates configuration of [gating mode](https://react.dev/reference/react-compiler/gating)
3448
3537
  */
3449
- 'react-hooks-extra/prefer-use-state-lazy-initialization'?: Linter.RuleEntry<[]>;
3538
+ 'react-hooks/gating'?: Linter.RuleEntry<ReactHooksGating>;
3450
3539
  /**
3451
- * verifies the list of dependencies for Hooks like useEffect and similar
3452
- * @see https://github.com/facebook/react/issues/14920
3540
+ * Validates against assignment/mutation of globals during render, part of ensuring that [side effects must render outside of render](https://react.dev/reference/rules/components-and-hooks-must-be-pure#side-effects-must-run-outside-of-render)
3453
3541
  */
3454
- 'react-hooks/exhaustive-deps'?: Linter.RuleEntry<ReactHooksExhaustiveDeps>;
3542
+ 'react-hooks/globals'?: Linter.RuleEntry<ReactHooksGlobals>;
3543
+ /**
3544
+ * Validates the rules of hooks
3545
+ */
3546
+ 'react-hooks/hooks'?: Linter.RuleEntry<ReactHooksHooks>;
3547
+ /**
3548
+ * Validates against mutating props, state, and other values that [are immutable](https://react.dev/reference/rules/components-and-hooks-must-be-pure#props-and-state-are-immutable)
3549
+ */
3550
+ 'react-hooks/immutability'?: Linter.RuleEntry<ReactHooksImmutability>;
3551
+ /**
3552
+ * Validates against usage of libraries which are incompatible with memoization (manual or automatic)
3553
+ */
3554
+ 'react-hooks/incompatible-library'?: Linter.RuleEntry<ReactHooksIncompatibleLibrary>;
3555
+ /**
3556
+ * Internal invariants
3557
+ */
3558
+ 'react-hooks/invariant'?: Linter.RuleEntry<ReactHooksInvariant>;
3559
+ /**
3560
+ * Validates that effect dependencies are memoized
3561
+ */
3562
+ 'react-hooks/memoized-effect-dependencies'?: Linter.RuleEntry<ReactHooksMemoizedEffectDependencies>;
3563
+ /**
3564
+ * Validates against deriving values from state in an effect
3565
+ */
3566
+ 'react-hooks/no-deriving-state-in-effects'?: Linter.RuleEntry<ReactHooksNoDerivingStateInEffects>;
3567
+ /**
3568
+ * Validates that existing manual memoized is preserved by the compiler. React Compiler will only compile components and hooks if its inference [matches or exceeds the existing manual memoization](https://react.dev/learn/react-compiler/introduction#what-should-i-do-about-usememo-usecallback-and-reactmemo)
3569
+ */
3570
+ 'react-hooks/preserve-manual-memoization'?: Linter.RuleEntry<ReactHooksPreserveManualMemoization>;
3571
+ /**
3572
+ * Validates that [components/hooks are pure](https://react.dev/reference/rules/components-and-hooks-must-be-pure) by checking that they do not call known-impure functions
3573
+ */
3574
+ 'react-hooks/purity'?: Linter.RuleEntry<ReactHooksPurity>;
3575
+ /**
3576
+ * Validates correct usage of refs, not reading/writing during render. See the "pitfalls" section in [`useRef()` usage](https://react.dev/reference/react/useRef#usage)
3577
+ */
3578
+ 'react-hooks/refs'?: Linter.RuleEntry<ReactHooksRefs>;
3579
+ /**
3580
+ * Validates against suppression of other rules
3581
+ */
3582
+ 'react-hooks/rule-suppression'?: Linter.RuleEntry<ReactHooksRuleSuppression>;
3455
3583
  /**
3456
3584
  * enforces the Rules of Hooks
3457
- * @see https://reactjs.org/docs/hooks-rules.html
3585
+ * @see https://react.dev/reference/rules/rules-of-hooks
3586
+ */
3587
+ 'react-hooks/rules-of-hooks'?: Linter.RuleEntry<ReactHooksRulesOfHooks>;
3588
+ /**
3589
+ * Validates against calling setState synchronously in an effect, which can lead to re-renders that degrade performance
3458
3590
  */
3459
- 'react-hooks/rules-of-hooks'?: Linter.RuleEntry<[]>;
3591
+ 'react-hooks/set-state-in-effect'?: Linter.RuleEntry<ReactHooksSetStateInEffect>;
3592
+ /**
3593
+ * Validates against setting state during render, which can trigger additional renders and potential infinite render loops
3594
+ */
3595
+ 'react-hooks/set-state-in-render'?: Linter.RuleEntry<ReactHooksSetStateInRender>;
3596
+ /**
3597
+ * Validates that components are static, not recreated every render. Components that are recreated dynamically can reset state and trigger excessive re-rendering
3598
+ */
3599
+ 'react-hooks/static-components'?: Linter.RuleEntry<ReactHooksStaticComponents>;
3600
+ /**
3601
+ * Validates against invalid syntax
3602
+ */
3603
+ 'react-hooks/syntax'?: Linter.RuleEntry<ReactHooksSyntax>;
3604
+ /**
3605
+ * Unimplemented features
3606
+ */
3607
+ 'react-hooks/todo'?: Linter.RuleEntry<ReactHooksTodo>;
3608
+ /**
3609
+ * Validates against syntax that we do not plan to support in React Compiler
3610
+ */
3611
+ 'react-hooks/unsupported-syntax'?: Linter.RuleEntry<ReactHooksUnsupportedSyntax>;
3612
+ /**
3613
+ * Validates usage of the useMemo() hook against common mistakes. See [`useMemo()` docs](https://react.dev/reference/react/useMemo) for more information.
3614
+ */
3615
+ 'react-hooks/use-memo'?: Linter.RuleEntry<ReactHooksUseMemo>;
3616
+ /**
3617
+ * Validates that useMemos always return a value. See [`useMemo()` docs](https://react.dev/reference/react/useMemo) for more information.
3618
+ */
3619
+ 'react-hooks/void-use-memo'?: Linter.RuleEntry<ReactHooksVoidUseMemo>;
3460
3620
  /**
3461
3621
  * Enforces naming conventions for components.
3462
3622
  * @see https://eslint-react.xyz/docs/rules/naming-convention-component-name
@@ -3504,25 +3664,15 @@ interface RuleOptions {
3504
3664
  */
3505
3665
  'react-web-api/no-leaked-timeout'?: Linter.RuleEntry<[]>;
3506
3666
  /**
3507
- * Enforces explicit boolean values for boolean attributes.
3508
- * @see https://eslint-react.xyz/docs/rules/avoid-shorthand-boolean
3509
- */
3510
- 'react/avoid-shorthand-boolean'?: Linter.RuleEntry<[]>;
3511
- /**
3512
- * Enforces explicit `<Fragment>` components instead of the shorthand `<>` or `</>` syntax.
3513
- * @see https://eslint-react.xyz/docs/rules/avoid-shorthand-fragment
3514
- */
3515
- 'react/avoid-shorthand-fragment'?: Linter.RuleEntry<[]>;
3516
- /**
3517
- * Disallow useless `forwardRef` calls on components that don't use `ref`s.
3518
- * @see https://eslint-react.xyz/docs/rules/no-useless-forward-ref
3519
- */
3520
- 'react/ensure-forward-ref-using-ref'?: Linter.RuleEntry<[]>;
3521
- /**
3522
- * Enforces that the 'key' attribute is placed before the spread attribute in JSX elements.
3667
+ * Enforces that the 'key' prop is placed before the spread prop in JSX elements.
3523
3668
  * @see https://eslint-react.xyz/docs/rules/jsx-key-before-spread
3524
3669
  */
3525
3670
  'react/jsx-key-before-spread'?: Linter.RuleEntry<[]>;
3671
+ /**
3672
+ * Prevents comments from being inserted as text nodes.
3673
+ * @see https://eslint-react.xyz/docs/rules/jsx-no-comment-textnodes
3674
+ */
3675
+ 'react/jsx-no-comment-textnodes'?: Linter.RuleEntry<[]>;
3526
3676
  /**
3527
3677
  * Disallow duplicate props in JSX elements.
3528
3678
  * @see https://eslint-react.xyz/docs/rules/jsx-no-duplicate-props
@@ -3538,6 +3688,16 @@ interface RuleOptions {
3538
3688
  * @see https://eslint-react.xyz/docs/rules/jsx-no-undef
3539
3689
  */
3540
3690
  'react/jsx-no-undef'?: Linter.RuleEntry<[]>;
3691
+ /**
3692
+ * Enforces shorthand syntax for boolean attributes.
3693
+ * @see https://eslint-react.xyz/docs/rules/jsx-shorthand-boolean
3694
+ */
3695
+ 'react/jsx-shorthand-boolean'?: Linter.RuleEntry<ReactJsxShorthandBoolean>;
3696
+ /**
3697
+ * Enforces shorthand syntax for fragments.
3698
+ * @see https://eslint-react.xyz/docs/rules/jsx-shorthand-fragment
3699
+ */
3700
+ 'react/jsx-shorthand-fragment'?: Linter.RuleEntry<ReactJsxShorthandFragment>;
3541
3701
  /**
3542
3702
  * Marks React variables as used when JSX is used.
3543
3703
  * @see https://eslint-react.xyz/docs/rules/jsx-uses-react
@@ -3598,21 +3758,6 @@ interface RuleOptions {
3598
3758
  * @see https://eslint-react.xyz/docs/rules/no-clone-element
3599
3759
  */
3600
3760
  'react/no-clone-element'?: Linter.RuleEntry<[]>;
3601
- /**
3602
- * Prevents comments from being inserted as text nodes.
3603
- * @see https://eslint-react.xyz/docs/rules/no-comment-textnodes
3604
- */
3605
- 'react/no-comment-textnodes'?: Linter.RuleEntry<[]>;
3606
- /**
3607
- * Disallow complex conditional rendering in JSX expressions.
3608
- * @see https://eslint-react.xyz/docs/rules/no-complex-conditional-rendering
3609
- */
3610
- 'react/no-complex-conditional-rendering'?: Linter.RuleEntry<[]>;
3611
- /**
3612
- * Disallow complex conditional rendering in JSX expressions.
3613
- * @see https://eslint-react.xyz/docs/rules/no-complex-conditional-rendering
3614
- */
3615
- 'react/no-complicated-conditional-rendering'?: Linter.RuleEntry<[]>;
3616
3761
  /**
3617
3762
  * Replace usages of `componentWillMount` with `UNSAFE_componentWillMount`.
3618
3763
  * @see https://eslint-react.xyz/docs/rules/no-component-will-mount
@@ -3648,16 +3793,16 @@ interface RuleOptions {
3648
3793
  * @see https://eslint-react.xyz/docs/rules/no-direct-mutation-state
3649
3794
  */
3650
3795
  'react/no-direct-mutation-state'?: Linter.RuleEntry<[]>;
3651
- /**
3652
- * Disallow duplicate props in JSX elements.
3653
- * @see https://eslint-react.xyz/docs/rules/jsx-no-duplicate-props
3654
- */
3655
- 'react/no-duplicate-jsx-props'?: Linter.RuleEntry<[]>;
3656
3796
  /**
3657
3797
  * Disallow duplicate `key` on elements in the same array or a list of `children`.
3658
3798
  * @see https://eslint-react.xyz/docs/rules/no-duplicate-key
3659
3799
  */
3660
3800
  'react/no-duplicate-key'?: Linter.RuleEntry<[]>;
3801
+ /**
3802
+ * Disallow certain props on components.
3803
+ * @see https://eslint-react.xyz/docs/rules/no-forbidden-props
3804
+ */
3805
+ 'react/no-forbidden-props'?: Linter.RuleEntry<ReactNoForbiddenProps>;
3661
3806
  /**
3662
3807
  * Replaces usages of `forwardRef` with passing `ref` as a prop.
3663
3808
  * @see https://eslint-react.xyz/docs/rules/no-forward-ref
@@ -3698,11 +3843,6 @@ interface RuleOptions {
3698
3843
  * @see https://eslint-react.xyz/docs/rules/no-nested-component-definitions
3699
3844
  */
3700
3845
  'react/no-nested-component-definitions'?: Linter.RuleEntry<[]>;
3701
- /**
3702
- * Disallow nesting component definitions inside other components.
3703
- * @see https://eslint-react.xyz/docs/rules/no-nested-component-definitions
3704
- */
3705
- 'react/no-nested-components'?: Linter.RuleEntry<[]>;
3706
3846
  /**
3707
3847
  * Disallow nesting lazy component declarations inside other components.
3708
3848
  * @see https://eslint-react.xyz/docs/rules/no-nested-lazy-component-declarations
@@ -3729,7 +3869,7 @@ interface RuleOptions {
3729
3869
  */
3730
3870
  'react/no-set-state-in-component-did-update'?: Linter.RuleEntry<[]>;
3731
3871
  /**
3732
- * Disallows calling `this.setState` in `componentWillUpdate` outside of functions, such as callbacks.
3872
+ * Disallow calling `this.setState` in `componentWillUpdate` outside of functions, such as callbacks.
3733
3873
  * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-will-update
3734
3874
  */
3735
3875
  'react/no-set-state-in-component-will-update'?: Linter.RuleEntry<[]>;
@@ -3738,6 +3878,26 @@ interface RuleOptions {
3738
3878
  * @see https://eslint-react.xyz/docs/rules/no-string-refs
3739
3879
  */
3740
3880
  'react/no-string-refs'?: Linter.RuleEntry<[]>;
3881
+ /**
3882
+ * Prevents the use of unnecessary `key` props on JSX elements when rendering lists.
3883
+ * @see https://eslint-react.xyz/docs/rules/no-unnecessary-key
3884
+ */
3885
+ 'react/no-unnecessary-key'?: Linter.RuleEntry<[]>;
3886
+ /**
3887
+ * Disallow unnecessary usage of `useCallback`.
3888
+ * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-callback
3889
+ */
3890
+ 'react/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>;
3891
+ /**
3892
+ * Disallow unnecessary usage of `useMemo`.
3893
+ * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-memo
3894
+ */
3895
+ 'react/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>;
3896
+ /**
3897
+ * Enforces that a function with the `use` prefix should use at least one Hook inside of it.
3898
+ * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-prefix
3899
+ */
3900
+ 'react/no-unnecessary-use-prefix'?: Linter.RuleEntry<[]>;
3741
3901
  /**
3742
3902
  * Warns the usage of `UNSAFE_componentWillMount` in class components.
3743
3903
  * @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-mount
@@ -3768,6 +3928,11 @@ interface RuleOptions {
3768
3928
  * @see https://eslint-react.xyz/docs/rules/no-unused-class-component-members
3769
3929
  */
3770
3930
  'react/no-unused-class-component-members'?: Linter.RuleEntry<[]>;
3931
+ /**
3932
+ * Warns component props that are defined but never used.
3933
+ * @see https://eslint-react.xyz/docs/rules/no-unused-props
3934
+ */
3935
+ 'react/no-unused-props'?: Linter.RuleEntry<[]>;
3771
3936
  /**
3772
3937
  * Warns unused class component state.
3773
3938
  * @see https://eslint-react.xyz/docs/rules/no-unused-state
@@ -3795,29 +3960,19 @@ interface RuleOptions {
3795
3960
  'react/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>;
3796
3961
  /**
3797
3962
  * Enforces React is imported via a namespace import.
3798
- * @see https://eslint-react.xyz/docs/rules/prefer-react-namespace-import
3963
+ * @see https://eslint-react.xyz/docs/rules/prefer-namespace-import
3799
3964
  */
3800
- 'react/prefer-react-namespace-import'?: Linter.RuleEntry<[]>;
3965
+ 'react/prefer-namespace-import'?: Linter.RuleEntry<[]>;
3801
3966
  /**
3802
3967
  * Enforces read-only props in components.
3803
3968
  * @see https://eslint-react.xyz/docs/rules/prefer-read-only-props
3804
3969
  */
3805
3970
  'react/prefer-read-only-props'?: Linter.RuleEntry<[]>;
3806
3971
  /**
3807
- * Enforces shorthand syntax for boolean attributes.
3808
- * @see https://eslint-react.xyz/docs/rules/prefer-shorthand-boolean
3809
- */
3810
- 'react/prefer-shorthand-boolean'?: Linter.RuleEntry<[]>;
3811
- /**
3812
- * Enforces shorthand syntax for fragments.
3813
- * @see https://eslint-react.xyz/docs/rules/prefer-shorthand-fragment
3814
- */
3815
- 'react/prefer-shorthand-fragment'?: Linter.RuleEntry<[]>;
3816
- /**
3817
- * Marks variables used in JSX elements as used.
3818
- * @see https://eslint-react.xyz/docs/rules/jsx-uses-vars
3972
+ * Enforces function calls made inside `useState` to be wrapped in an `initializer function`.
3973
+ * @see https://eslint-react.xyz/docs/rules/prefer-use-state-lazy-initialization
3819
3974
  */
3820
- 'react/use-jsx-vars'?: Linter.RuleEntry<[]>;
3975
+ 'react/prefer-use-state-lazy-initialization'?: Linter.RuleEntry<[]>;
3821
3976
  /**
3822
3977
  * disallow confusing quantifiers
3823
3978
  * @see https://ota-meshi.github.io/eslint-plugin-regexp/rules/confusing-quantifier.html
@@ -4398,6 +4553,11 @@ interface RuleOptions {
4398
4553
  * @see https://eslint.style/rules/eol-last
4399
4554
  */
4400
4555
  'style/eol-last'?: Linter.RuleEntry<StyleEolLast>;
4556
+ /**
4557
+ * Enforce consistent spacing and line break styles inside brackets.
4558
+ * @see https://eslint.style/rules/list-style
4559
+ */
4560
+ 'style/exp-list-style'?: Linter.RuleEntry<StyleExpListStyle>;
4401
4561
  /**
4402
4562
  * Enforce line breaks between arguments of a function call
4403
4563
  * @see https://eslint.style/rules/function-call-argument-newline
@@ -4869,7 +5029,7 @@ interface RuleOptions {
4869
5029
  */
4870
5030
  'template-tag-spacing'?: Linter.RuleEntry<TemplateTagSpacing>;
4871
5031
  /**
4872
- * require .spec test file pattern
5032
+ * require test file pattern
4873
5033
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/consistent-test-filename.md
4874
5034
  */
4875
5035
  'test/consistent-test-filename'?: Linter.RuleEntry<TestConsistentTestFilename>;
@@ -5049,6 +5209,11 @@ interface RuleOptions {
5049
5209
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-test-blocks.md
5050
5210
  */
5051
5211
  'test/padding-around-test-blocks'?: Linter.RuleEntry<[]>;
5212
+ /**
5213
+ * Prefer `toHaveBeenCalledExactlyOnceWith` over `toHaveBeenCalledOnce` and `toHaveBeenCalledWith`
5214
+ * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-called-exactly-once-with.md
5215
+ */
5216
+ 'test/prefer-called-exactly-once-with'?: Linter.RuleEntry<[]>;
5052
5217
  /**
5053
5218
  * enforce using `toBeCalledOnce()` or `toHaveBeenCalledOnce()`
5054
5219
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-called-once.md
@@ -5109,6 +5274,11 @@ interface RuleOptions {
5109
5274
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-hooks-on-top.md
5110
5275
  */
5111
5276
  'test/prefer-hooks-on-top'?: Linter.RuleEntry<[]>;
5277
+ /**
5278
+ * prefer dynamic import in mock
5279
+ * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-import-in-mock.md
5280
+ */
5281
+ 'test/prefer-import-in-mock'?: Linter.RuleEntry<[]>;
5112
5282
  /**
5113
5283
  * enforce importing Vitest globals
5114
5284
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-importing-vitest-globals.md
@@ -5767,7 +5937,7 @@ interface RuleOptions {
5767
5937
  * Disallow member access on a value with type `any`
5768
5938
  * @see https://typescript-eslint.io/rules/no-unsafe-member-access
5769
5939
  */
5770
- 'ts/no-unsafe-member-access'?: Linter.RuleEntry<[]>;
5940
+ 'ts/no-unsafe-member-access'?: Linter.RuleEntry<TsNoUnsafeMemberAccess>;
5771
5941
  /**
5772
5942
  * Disallow returning a value with type `any` from a function
5773
5943
  * @see https://typescript-eslint.io/rules/no-unsafe-return
@@ -7059,7 +7229,7 @@ interface RuleOptions {
7059
7229
  * disallow asynchronous actions in computed properties
7060
7230
  * @see https://eslint.vuejs.org/rules/no-async-in-computed-properties.html
7061
7231
  */
7062
- 'vue/no-async-in-computed-properties'?: Linter.RuleEntry<[]>;
7232
+ 'vue/no-async-in-computed-properties'?: Linter.RuleEntry<VueNoAsyncInComputedProperties>;
7063
7233
  /**
7064
7234
  * disallow the use of bare strings in `<template>`
7065
7235
  * @see https://eslint.vuejs.org/rules/no-bare-strings-in-template.html
@@ -7560,7 +7730,7 @@ interface RuleOptions {
7560
7730
  * disallow use of v-html to prevent XSS attack
7561
7731
  * @see https://eslint.vuejs.org/rules/no-v-html.html
7562
7732
  */
7563
- 'vue/no-v-html'?: Linter.RuleEntry<[]>;
7733
+ 'vue/no-v-html'?: Linter.RuleEntry<VueNoVHtml>;
7564
7734
  /**
7565
7735
  * disallow adding an argument to `v-model` used in custom component
7566
7736
  * @see https://eslint.vuejs.org/rules/no-v-model-argument.html
@@ -8607,6 +8777,7 @@ type JsdocCheckPropertyNames = [] | [{
8607
8777
  type JsdocCheckTagNames = [] | [{
8608
8778
  definedTags?: string[];
8609
8779
  enableFixer?: boolean;
8780
+ inlineTags?: string[];
8610
8781
  jsxTags?: boolean;
8611
8782
  typed?: boolean;
8612
8783
  }];
@@ -8649,6 +8820,12 @@ type JsdocConvertToJsdocComments = [] | [{
8649
8820
  type JsdocEmptyTags = [] | [{
8650
8821
  tags?: string[];
8651
8822
  }];
8823
+ // ----- jsdoc/escape-inline-tags -----
8824
+ type JsdocEscapeInlineTags = [] | [{
8825
+ allowedInlineTags?: string[];
8826
+ enableFixer?: boolean;
8827
+ fixType?: ("backticks" | "backslash");
8828
+ }];
8652
8829
  // ----- jsdoc/implements-on-classes -----
8653
8830
  type JsdocImplementsOnClasses = [] | [{
8654
8831
  contexts?: (string | {
@@ -8765,10 +8942,17 @@ type JsdocNoTypes = [] | [{
8765
8942
  }];
8766
8943
  // ----- jsdoc/no-undefined-types -----
8767
8944
  type JsdocNoUndefinedTypes = [] | [{
8945
+ checkUsedTypedefs?: boolean;
8768
8946
  definedTypes?: string[];
8769
8947
  disableReporting?: boolean;
8770
8948
  markVariablesAsUsed?: boolean;
8771
8949
  }];
8950
+ // ----- jsdoc/prefer-import-tag -----
8951
+ type JsdocPreferImportTag = [] | [{
8952
+ enableFixer?: boolean;
8953
+ exemptTypedefs?: boolean;
8954
+ outputType?: ("named-import" | "namespaced-import");
8955
+ }];
8772
8956
  // ----- jsdoc/require-asterisk-prefix -----
8773
8957
  type JsdocRequireAsteriskPrefix = [] | [("always" | "never" | "any")] | [("always" | "never" | "any"), {
8774
8958
  tags?: {
@@ -8875,6 +9059,7 @@ type JsdocRequireParam = [] | [{
8875
9059
  enableRootFixer?: boolean;
8876
9060
  exemptedBy?: string[];
8877
9061
  ignoreWhenAllParamsMissing?: boolean;
9062
+ interfaceExemptsParamsCheck?: boolean;
8878
9063
  unnamedRootBase?: string[];
8879
9064
  useDefaultObjectProperties?: boolean;
8880
9065
  }];
@@ -8927,6 +9112,7 @@ type JsdocRequireReturns = [] | [{
8927
9112
  type JsdocRequireReturnsCheck = [] | [{
8928
9113
  exemptAsync?: boolean;
8929
9114
  exemptGenerators?: boolean;
9115
+ noNativeTypes?: boolean;
8930
9116
  reportMissingReturnForUndefinedTypes?: boolean;
8931
9117
  }];
8932
9118
  // ----- jsdoc/require-returns-description -----
@@ -8943,6 +9129,14 @@ type JsdocRequireReturnsType = [] | [{
8943
9129
  context?: string;
8944
9130
  })[];
8945
9131
  }];
9132
+ // ----- jsdoc/require-tags -----
9133
+ type JsdocRequireTags = [] | [{
9134
+ tags?: (string | {
9135
+ context?: string;
9136
+ tag?: string;
9137
+ [k: string]: unknown | undefined;
9138
+ })[];
9139
+ }];
8946
9140
  // ----- jsdoc/require-template -----
8947
9141
  type JsdocRequireTemplate = [] | [{
8948
9142
  exemptedBy?: string[];
@@ -8976,7 +9170,6 @@ type JsdocRequireYieldsCheck = [] | [{
8976
9170
  comment?: string;
8977
9171
  context?: string;
8978
9172
  })[];
8979
- exemptedBy?: string[];
8980
9173
  next?: boolean;
8981
9174
  }];
8982
9175
  // ----- jsdoc/sort-tags -----
@@ -8994,6 +9187,7 @@ type JsdocTagLines = [] | [("always" | "any" | "never")] | [("always" | "any" |
8994
9187
  applyToEndTag?: boolean;
8995
9188
  count?: number;
8996
9189
  endLines?: (number | null);
9190
+ maxBlockLines?: (number | null);
8997
9191
  startLines?: (number | null);
8998
9192
  tags?: {
8999
9193
  [k: string]: {
@@ -9007,16 +9201,44 @@ type JsdocTextEscaping = [] | [{
9007
9201
  escapeHTML?: boolean;
9008
9202
  escapeMarkdown?: boolean;
9009
9203
  }];
9204
+ // ----- jsdoc/ts-method-signature-style -----
9205
+ type JsdocTsMethodSignatureStyle = [] | [("method" | "property")] | [("method" | "property"), {
9206
+ enableFixer?: boolean;
9207
+ }];
9208
+ // ----- jsdoc/ts-no-unnecessary-template-expression -----
9209
+ type JsdocTsNoUnnecessaryTemplateExpression = [] | [{
9210
+ enableFixer?: boolean;
9211
+ }];
9212
+ // ----- jsdoc/ts-prefer-function-type -----
9213
+ type JsdocTsPreferFunctionType = [] | [{
9214
+ enableFixer?: boolean;
9215
+ }];
9010
9216
  // ----- jsdoc/type-formatting -----
9011
9217
  type JsdocTypeFormatting = [] | [{
9012
9218
  arrayBrackets?: ("angle" | "square");
9219
+ arrowFunctionPostReturnMarkerSpacing?: string;
9220
+ arrowFunctionPreReturnMarkerSpacing?: string;
9013
9221
  enableFixer?: boolean;
9222
+ functionOrClassParameterSpacing?: string;
9223
+ functionOrClassPostGenericSpacing?: string;
9224
+ functionOrClassPostReturnMarkerSpacing?: string;
9225
+ functionOrClassPreReturnMarkerSpacing?: string;
9226
+ functionOrClassTypeParameterSpacing?: string;
9227
+ genericAndTupleElementSpacing?: string;
9014
9228
  genericDot?: boolean;
9229
+ keyValuePostColonSpacing?: string;
9230
+ keyValuePostKeySpacing?: string;
9231
+ keyValuePostOptionalSpacing?: string;
9232
+ keyValuePostVariadicSpacing?: string;
9233
+ methodQuotes?: ("double" | "single");
9015
9234
  objectFieldIndent?: string;
9016
9235
  objectFieldQuote?: ("double" | "single" | null);
9017
9236
  objectFieldSeparator?: ("comma" | "comma-and-linebreak" | "linebreak" | "semicolon" | "semicolon-and-linebreak");
9237
+ objectFieldSeparatorOptionalLinebreak?: boolean;
9018
9238
  objectFieldSeparatorTrailingPunctuation?: boolean;
9019
- propertyQuotes?: ("double" | "single" | null);
9239
+ parameterDefaultValueSpacing?: string;
9240
+ postMethodNameSpacing?: string;
9241
+ postNewSpacing?: string;
9020
9242
  separatorForSingleObjectField?: boolean;
9021
9243
  stringQuotes?: ("double" | "single");
9022
9244
  typeBracketSpacing?: string;
@@ -9710,6 +9932,10 @@ type MarkdownNoHtml = [] | [{
9710
9932
  type MarkdownNoMissingAtxHeadingSpace = [] | [{
9711
9933
  checkClosedHeadings?: boolean;
9712
9934
  }];
9935
+ // ----- markdown/no-missing-label-refs -----
9936
+ type MarkdownNoMissingLabelRefs = [] | [{
9937
+ allowLabels?: string[];
9938
+ }];
9713
9939
  // ----- markdown/no-missing-link-fragments -----
9714
9940
  type MarkdownNoMissingLinkFragments = [] | [{
9715
9941
  ignoreCase?: boolean;
@@ -10094,12 +10320,14 @@ type NoRestrictedImports = ((string | {
10094
10320
  message?: string;
10095
10321
  importNames?: string[];
10096
10322
  allowImportNames?: string[];
10323
+ allowTypeImports?: boolean;
10097
10324
  })[] | [] | [{
10098
10325
  paths?: (string | {
10099
10326
  name: string;
10100
10327
  message?: string;
10101
10328
  importNames?: string[];
10102
10329
  allowImportNames?: string[];
10330
+ allowTypeImports?: boolean;
10103
10331
  })[];
10104
10332
  patterns?: (string[] | ({
10105
10333
  [k: string]: unknown | undefined;
@@ -10287,7 +10515,7 @@ type NodeHashbang = [] | [{
10287
10515
  // ----- node/no-deprecated-api -----
10288
10516
  type NodeNoDeprecatedApi = [] | [{
10289
10517
  version?: string;
10290
- ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "repl.REPLServer" | "repl.Recoverable" | "repl.REPL_MODE_MAGIC" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "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.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext" | "zlib.BrotliCompress()" | "zlib.BrotliDecompress()" | "zlib.Deflate()" | "zlib.DeflateRaw()" | "zlib.Gunzip()" | "zlib.Gzip()" | "zlib.Inflate()" | "zlib.InflateRaw()" | "zlib.Unzip()")[];
10518
+ ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "repl.REPLServer" | "repl.Recoverable" | "repl.REPL_MODE_MAGIC" | "repl.builtinModules" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "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.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext" | "zlib.BrotliCompress()" | "zlib.BrotliDecompress()" | "zlib.Deflate()" | "zlib.DeflateRaw()" | "zlib.Gunzip()" | "zlib.Gzip()" | "zlib.Inflate()" | "zlib.InflateRaw()" | "zlib.Unzip()")[];
10291
10519
  ignoreGlobalItems?: ("Buffer()" | "new Buffer()" | "COUNTER_NET_SERVER_CONNECTION" | "COUNTER_NET_SERVER_CONNECTION_CLOSE" | "COUNTER_HTTP_SERVER_REQUEST" | "COUNTER_HTTP_SERVER_RESPONSE" | "COUNTER_HTTP_CLIENT_REQUEST" | "COUNTER_HTTP_CLIENT_RESPONSE" | "GLOBAL" | "Intl.v8BreakIterator" | "require.extensions" | "root" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport")[];
10292
10520
  ignoreIndirectDependencies?: boolean;
10293
10521
  }];
@@ -10481,7 +10709,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = [] | [{
10481
10709
  type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
10482
10710
  version?: string;
10483
10711
  allowExperimental?: boolean;
10484
- ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename")[];
10712
+ 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.execve" | "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.ref" | "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.threadCpuUsage" | "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.unref" | "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.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.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "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.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "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.partialDeepStrictEqual" | "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.resolveTlsa" | "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.resolveTlsa" | "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.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.NetworkResources.put" | "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.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "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.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "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.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "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.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "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.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "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.setTraceSigInt" | "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.isFloat16Array" | "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.isFloat16Array" | "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.isStringOneByteRepresentation" | "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.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "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.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "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.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
10485
10713
  }];
10486
10714
  // ----- node/prefer-global/buffer -----
10487
10715
  type NodePreferGlobalBuffer = [] | [("always" | "never")];
@@ -12339,6 +12567,7 @@ type PnpmJsonEnforceCatalog = [] | [{
12339
12567
  reuseExistingCatalog?: boolean;
12340
12568
  conflicts?: ("new-catalog" | "overrides" | "error");
12341
12569
  fields?: string[];
12570
+ ignores?: string[];
12342
12571
  }];
12343
12572
  // ----- pnpm/json-prefer-workspace-settings -----
12344
12573
  type PnpmJsonPreferWorkspaceSettings = [] | [{
@@ -12355,6 +12584,7 @@ type PnpmJsonValidCatalog = [] | [{
12355
12584
  // ----- pnpm/yaml-no-duplicate-catalog-item -----
12356
12585
  type PnpmYamlNoDuplicateCatalogItem = [] | [{
12357
12586
  allow?: string[];
12587
+ checkDuplicates?: ("name-only" | "exact-version");
12358
12588
  }];
12359
12589
  // ----- prefer-arrow-callback -----
12360
12590
  type PreferArrowCallback = [] | [{
@@ -12428,10 +12658,124 @@ type ReactDomNoUnknownProperty = [] | [{
12428
12658
  ignore?: string[];
12429
12659
  requireDataLowercase?: boolean;
12430
12660
  }];
12661
+ // ----- react-hooks/automatic-effect-dependencies -----
12662
+ type ReactHooksAutomaticEffectDependencies = [] | [{
12663
+ [k: string]: unknown | undefined;
12664
+ }];
12665
+ // ----- react-hooks/capitalized-calls -----
12666
+ type ReactHooksCapitalizedCalls = [] | [{
12667
+ [k: string]: unknown | undefined;
12668
+ }];
12669
+ // ----- react-hooks/component-hook-factories -----
12670
+ type ReactHooksComponentHookFactories = [] | [{
12671
+ [k: string]: unknown | undefined;
12672
+ }];
12673
+ // ----- react-hooks/config -----
12674
+ type ReactHooksConfig = [] | [{
12675
+ [k: string]: unknown | undefined;
12676
+ }];
12677
+ // ----- react-hooks/error-boundaries -----
12678
+ type ReactHooksErrorBoundaries = [] | [{
12679
+ [k: string]: unknown | undefined;
12680
+ }];
12431
12681
  // ----- react-hooks/exhaustive-deps -----
12432
12682
  type ReactHooksExhaustiveDeps = [] | [{
12433
12683
  additionalHooks?: string;
12434
12684
  enableDangerousAutofixThisMayCauseInfiniteLoops?: boolean;
12685
+ experimental_autoDependenciesHooks?: string[];
12686
+ requireExplicitEffectDeps?: boolean;
12687
+ }];
12688
+ // ----- react-hooks/fbt -----
12689
+ type ReactHooksFbt = [] | [{
12690
+ [k: string]: unknown | undefined;
12691
+ }];
12692
+ // ----- react-hooks/fire -----
12693
+ type ReactHooksFire = [] | [{
12694
+ [k: string]: unknown | undefined;
12695
+ }];
12696
+ // ----- react-hooks/gating -----
12697
+ type ReactHooksGating = [] | [{
12698
+ [k: string]: unknown | undefined;
12699
+ }];
12700
+ // ----- react-hooks/globals -----
12701
+ type ReactHooksGlobals = [] | [{
12702
+ [k: string]: unknown | undefined;
12703
+ }];
12704
+ // ----- react-hooks/hooks -----
12705
+ type ReactHooksHooks = [] | [{
12706
+ [k: string]: unknown | undefined;
12707
+ }];
12708
+ // ----- react-hooks/immutability -----
12709
+ type ReactHooksImmutability = [] | [{
12710
+ [k: string]: unknown | undefined;
12711
+ }];
12712
+ // ----- react-hooks/incompatible-library -----
12713
+ type ReactHooksIncompatibleLibrary = [] | [{
12714
+ [k: string]: unknown | undefined;
12715
+ }];
12716
+ // ----- react-hooks/invariant -----
12717
+ type ReactHooksInvariant = [] | [{
12718
+ [k: string]: unknown | undefined;
12719
+ }];
12720
+ // ----- react-hooks/memoized-effect-dependencies -----
12721
+ type ReactHooksMemoizedEffectDependencies = [] | [{
12722
+ [k: string]: unknown | undefined;
12723
+ }];
12724
+ // ----- react-hooks/no-deriving-state-in-effects -----
12725
+ type ReactHooksNoDerivingStateInEffects = [] | [{
12726
+ [k: string]: unknown | undefined;
12727
+ }];
12728
+ // ----- react-hooks/preserve-manual-memoization -----
12729
+ type ReactHooksPreserveManualMemoization = [] | [{
12730
+ [k: string]: unknown | undefined;
12731
+ }];
12732
+ // ----- react-hooks/purity -----
12733
+ type ReactHooksPurity = [] | [{
12734
+ [k: string]: unknown | undefined;
12735
+ }];
12736
+ // ----- react-hooks/refs -----
12737
+ type ReactHooksRefs = [] | [{
12738
+ [k: string]: unknown | undefined;
12739
+ }];
12740
+ // ----- react-hooks/rule-suppression -----
12741
+ type ReactHooksRuleSuppression = [] | [{
12742
+ [k: string]: unknown | undefined;
12743
+ }];
12744
+ // ----- react-hooks/rules-of-hooks -----
12745
+ type ReactHooksRulesOfHooks = [] | [{
12746
+ additionalHooks?: string;
12747
+ }];
12748
+ // ----- react-hooks/set-state-in-effect -----
12749
+ type ReactHooksSetStateInEffect = [] | [{
12750
+ [k: string]: unknown | undefined;
12751
+ }];
12752
+ // ----- react-hooks/set-state-in-render -----
12753
+ type ReactHooksSetStateInRender = [] | [{
12754
+ [k: string]: unknown | undefined;
12755
+ }];
12756
+ // ----- react-hooks/static-components -----
12757
+ type ReactHooksStaticComponents = [] | [{
12758
+ [k: string]: unknown | undefined;
12759
+ }];
12760
+ // ----- react-hooks/syntax -----
12761
+ type ReactHooksSyntax = [] | [{
12762
+ [k: string]: unknown | undefined;
12763
+ }];
12764
+ // ----- react-hooks/todo -----
12765
+ type ReactHooksTodo = [] | [{
12766
+ [k: string]: unknown | undefined;
12767
+ }];
12768
+ // ----- react-hooks/unsupported-syntax -----
12769
+ type ReactHooksUnsupportedSyntax = [] | [{
12770
+ [k: string]: unknown | undefined;
12771
+ }];
12772
+ // ----- react-hooks/use-memo -----
12773
+ type ReactHooksUseMemo = [] | [{
12774
+ [k: string]: unknown | undefined;
12775
+ }];
12776
+ // ----- react-hooks/void-use-memo -----
12777
+ type ReactHooksVoidUseMemo = [] | [{
12778
+ [k: string]: unknown | undefined;
12435
12779
  }];
12436
12780
  // ----- react-naming-convention/component-name -----
12437
12781
  type ReactNamingConventionComponentName = [] | [(("PascalCase" | "CONSTANT_CASE") | {
@@ -12458,6 +12802,20 @@ type ReactRefreshOnlyExportComponents = [] | [{
12458
12802
  customHOCs?: string[];
12459
12803
  checkJS?: boolean;
12460
12804
  }];
12805
+ // ----- react/jsx-shorthand-boolean -----
12806
+ type ReactJsxShorthandBoolean = [] | [(-1 | 1)];
12807
+ // ----- react/jsx-shorthand-fragment -----
12808
+ type ReactJsxShorthandFragment = [] | [(-1 | 1)];
12809
+ // ----- react/no-forbidden-props -----
12810
+ type ReactNoForbiddenProps = [] | [{
12811
+ forbid?: (string | {
12812
+ excludedNodes?: string[];
12813
+ prop: string;
12814
+ } | {
12815
+ includedNodes?: string[];
12816
+ prop: string;
12817
+ })[];
12818
+ }];
12461
12819
  // ----- react/no-useless-fragment -----
12462
12820
  type ReactNoUselessFragment = [] | [{
12463
12821
  allowExpressions?: boolean;
@@ -12852,6 +13210,50 @@ type StyleCurlyNewline = [] | [(("always" | "never") | {
12852
13210
  type StyleDotLocation = [] | [("object" | "property")];
12853
13211
  // ----- style/eol-last -----
12854
13212
  type StyleEolLast = [] | [("always" | "never" | "unix" | "windows")];
13213
+ // ----- style/exp-list-style -----
13214
+ type StyleExpListStyle = [] | [{
13215
+ singleLine?: _StyleExpListStyle_SingleLineConfig;
13216
+ multiLine?: _StyleExpListStyle_MultiLineConfig;
13217
+ overrides?: {
13218
+ "[]"?: _StyleExpListStyle_BaseConfig;
13219
+ "{}"?: _StyleExpListStyle_BaseConfig;
13220
+ "<>"?: _StyleExpListStyle_BaseConfig;
13221
+ "()"?: _StyleExpListStyle_BaseConfig;
13222
+ ArrayExpression?: _StyleExpListStyle_BaseConfig;
13223
+ ArrayPattern?: _StyleExpListStyle_BaseConfig;
13224
+ ArrowFunctionExpression?: _StyleExpListStyle_BaseConfig;
13225
+ CallExpression?: _StyleExpListStyle_BaseConfig;
13226
+ ExportNamedDeclaration?: _StyleExpListStyle_BaseConfig;
13227
+ FunctionDeclaration?: _StyleExpListStyle_BaseConfig;
13228
+ FunctionExpression?: _StyleExpListStyle_BaseConfig;
13229
+ ImportDeclaration?: _StyleExpListStyle_BaseConfig;
13230
+ ImportAttributes?: _StyleExpListStyle_BaseConfig;
13231
+ NewExpression?: _StyleExpListStyle_BaseConfig;
13232
+ ObjectExpression?: _StyleExpListStyle_BaseConfig;
13233
+ ObjectPattern?: _StyleExpListStyle_BaseConfig;
13234
+ TSDeclareFunction?: _StyleExpListStyle_BaseConfig;
13235
+ TSFunctionType?: _StyleExpListStyle_BaseConfig;
13236
+ TSInterfaceBody?: _StyleExpListStyle_BaseConfig;
13237
+ TSEnumBody?: _StyleExpListStyle_BaseConfig;
13238
+ TSTupleType?: _StyleExpListStyle_BaseConfig;
13239
+ TSTypeLiteral?: _StyleExpListStyle_BaseConfig;
13240
+ TSTypeParameterDeclaration?: _StyleExpListStyle_BaseConfig;
13241
+ TSTypeParameterInstantiation?: _StyleExpListStyle_BaseConfig;
13242
+ JSONArrayExpression?: _StyleExpListStyle_BaseConfig;
13243
+ JSONObjectExpression?: _StyleExpListStyle_BaseConfig;
13244
+ };
13245
+ }];
13246
+ interface _StyleExpListStyle_SingleLineConfig {
13247
+ spacing?: ("always" | "never");
13248
+ maxItems?: number;
13249
+ }
13250
+ interface _StyleExpListStyle_MultiLineConfig {
13251
+ minItems?: number;
13252
+ }
13253
+ interface _StyleExpListStyle_BaseConfig {
13254
+ singleLine?: _StyleExpListStyle_SingleLineConfig;
13255
+ multiline?: _StyleExpListStyle_MultiLineConfig;
13256
+ }
12855
13257
  // ----- style/function-call-argument-newline -----
12856
13258
  type StyleFunctionCallArgumentNewline = [] | [("always" | "never" | "consistent")];
12857
13259
  // ----- style/function-call-spacing -----
@@ -12882,6 +13284,10 @@ type StyleGeneratorStarSpacing = [] | [(("before" | "after" | "both" | "neither"
12882
13284
  before?: boolean;
12883
13285
  after?: boolean;
12884
13286
  });
13287
+ shorthand?: (("before" | "after" | "both" | "neither") | {
13288
+ before?: boolean;
13289
+ after?: boolean;
13290
+ });
12885
13291
  })];
12886
13292
  // ----- style/implicit-arrow-linebreak -----
12887
13293
  type StyleImplicitArrowLinebreak = [] | [("beside" | "below")];
@@ -12917,7 +13323,11 @@ type StyleIndent = [] | [("tab" | number)] | [("tab" | number), {
12917
13323
  ObjectExpression?: (number | ("first" | "off"));
12918
13324
  ImportDeclaration?: (number | ("first" | "off"));
12919
13325
  flatTernaryExpressions?: boolean;
12920
- offsetTernaryExpressions?: boolean;
13326
+ offsetTernaryExpressions?: (boolean | {
13327
+ CallExpression?: boolean;
13328
+ AwaitExpression?: boolean;
13329
+ NewExpression?: boolean;
13330
+ });
12921
13331
  offsetTernaryExpressionsOffsetCallExpressions?: boolean;
12922
13332
  ignoredNodes?: string[];
12923
13333
  ignoreComments?: boolean;
@@ -13127,22 +13537,6 @@ type StyleKeywordSpacing = [] | [{
13127
13537
  before?: boolean;
13128
13538
  after?: boolean;
13129
13539
  };
13130
- arguments?: {
13131
- before?: boolean;
13132
- after?: boolean;
13133
- };
13134
- as?: {
13135
- before?: boolean;
13136
- after?: boolean;
13137
- };
13138
- async?: {
13139
- before?: boolean;
13140
- after?: boolean;
13141
- };
13142
- await?: {
13143
- before?: boolean;
13144
- after?: boolean;
13145
- };
13146
13540
  boolean?: {
13147
13541
  before?: boolean;
13148
13542
  after?: boolean;
@@ -13207,10 +13601,6 @@ type StyleKeywordSpacing = [] | [{
13207
13601
  before?: boolean;
13208
13602
  after?: boolean;
13209
13603
  };
13210
- eval?: {
13211
- before?: boolean;
13212
- after?: boolean;
13213
- };
13214
13604
  export?: {
13215
13605
  before?: boolean;
13216
13606
  after?: boolean;
@@ -13239,18 +13629,10 @@ type StyleKeywordSpacing = [] | [{
13239
13629
  before?: boolean;
13240
13630
  after?: boolean;
13241
13631
  };
13242
- from?: {
13243
- before?: boolean;
13244
- after?: boolean;
13245
- };
13246
13632
  function?: {
13247
13633
  before?: boolean;
13248
13634
  after?: boolean;
13249
13635
  };
13250
- get?: {
13251
- before?: boolean;
13252
- after?: boolean;
13253
- };
13254
13636
  goto?: {
13255
13637
  before?: boolean;
13256
13638
  after?: boolean;
@@ -13283,10 +13665,6 @@ type StyleKeywordSpacing = [] | [{
13283
13665
  before?: boolean;
13284
13666
  after?: boolean;
13285
13667
  };
13286
- let?: {
13287
- before?: boolean;
13288
- after?: boolean;
13289
- };
13290
13668
  long?: {
13291
13669
  before?: boolean;
13292
13670
  after?: boolean;
@@ -13303,10 +13681,6 @@ type StyleKeywordSpacing = [] | [{
13303
13681
  before?: boolean;
13304
13682
  after?: boolean;
13305
13683
  };
13306
- of?: {
13307
- before?: boolean;
13308
- after?: boolean;
13309
- };
13310
13684
  package?: {
13311
13685
  before?: boolean;
13312
13686
  after?: boolean;
@@ -13327,10 +13701,6 @@ type StyleKeywordSpacing = [] | [{
13327
13701
  before?: boolean;
13328
13702
  after?: boolean;
13329
13703
  };
13330
- set?: {
13331
- before?: boolean;
13332
- after?: boolean;
13333
- };
13334
13704
  short?: {
13335
13705
  before?: boolean;
13336
13706
  after?: boolean;
@@ -13375,18 +13745,10 @@ type StyleKeywordSpacing = [] | [{
13375
13745
  before?: boolean;
13376
13746
  after?: boolean;
13377
13747
  };
13378
- type?: {
13379
- before?: boolean;
13380
- after?: boolean;
13381
- };
13382
13748
  typeof?: {
13383
13749
  before?: boolean;
13384
13750
  after?: boolean;
13385
13751
  };
13386
- using?: {
13387
- before?: boolean;
13388
- after?: boolean;
13389
- };
13390
13752
  var?: {
13391
13753
  before?: boolean;
13392
13754
  after?: boolean;
@@ -13407,6 +13769,54 @@ type StyleKeywordSpacing = [] | [{
13407
13769
  before?: boolean;
13408
13770
  after?: boolean;
13409
13771
  };
13772
+ arguments?: {
13773
+ before?: boolean;
13774
+ after?: boolean;
13775
+ };
13776
+ as?: {
13777
+ before?: boolean;
13778
+ after?: boolean;
13779
+ };
13780
+ async?: {
13781
+ before?: boolean;
13782
+ after?: boolean;
13783
+ };
13784
+ await?: {
13785
+ before?: boolean;
13786
+ after?: boolean;
13787
+ };
13788
+ eval?: {
13789
+ before?: boolean;
13790
+ after?: boolean;
13791
+ };
13792
+ from?: {
13793
+ before?: boolean;
13794
+ after?: boolean;
13795
+ };
13796
+ get?: {
13797
+ before?: boolean;
13798
+ after?: boolean;
13799
+ };
13800
+ let?: {
13801
+ before?: boolean;
13802
+ after?: boolean;
13803
+ };
13804
+ of?: {
13805
+ before?: boolean;
13806
+ after?: boolean;
13807
+ };
13808
+ set?: {
13809
+ before?: boolean;
13810
+ after?: boolean;
13811
+ };
13812
+ type?: {
13813
+ before?: boolean;
13814
+ after?: boolean;
13815
+ };
13816
+ using?: {
13817
+ before?: boolean;
13818
+ after?: boolean;
13819
+ };
13410
13820
  yield?: {
13411
13821
  before?: boolean;
13412
13822
  after?: boolean;
@@ -13706,6 +14116,19 @@ type StyleObjectCurlyNewline = [] | [((("always" | "never") | {
13706
14116
  type StyleObjectCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
13707
14117
  arraysInObjects?: boolean;
13708
14118
  objectsInObjects?: boolean;
14119
+ overrides?: {
14120
+ ObjectPattern?: ("always" | "never");
14121
+ ObjectExpression?: ("always" | "never");
14122
+ ImportDeclaration?: ("always" | "never");
14123
+ ImportAttributes?: ("always" | "never");
14124
+ ExportNamedDeclaration?: ("always" | "never");
14125
+ ExportAllDeclaration?: ("always" | "never");
14126
+ TSMappedType?: ("always" | "never");
14127
+ TSTypeLiteral?: ("always" | "never");
14128
+ TSInterfaceBody?: ("always" | "never");
14129
+ TSEnumBody?: ("always" | "never");
14130
+ };
14131
+ emptyObjects?: ("ignore" | "always" | "never");
13709
14132
  }];
13710
14133
  // ----- style/object-property-newline -----
13711
14134
  type StyleObjectPropertyNewline = [] | [{
@@ -14860,6 +15283,10 @@ type TsNoUnnecessaryTypeAssertion = [] | [{
14860
15283
  checkLiteralConstAssertions?: boolean;
14861
15284
  typesToIgnore?: string[];
14862
15285
  }];
15286
+ // ----- ts/no-unsafe-member-access -----
15287
+ type TsNoUnsafeMemberAccess = [] | [{
15288
+ allowOptionalChaining?: boolean;
15289
+ }];
14863
15290
  // ----- ts/no-unused-expressions -----
14864
15291
  type TsNoUnusedExpressions = [] | [{
14865
15292
  allowShortCircuit?: boolean;
@@ -14877,6 +15304,7 @@ type TsNoUnusedVars = [] | [(("all" | "local") | {
14877
15304
  destructuredArrayIgnorePattern?: string;
14878
15305
  ignoreClassWithStaticInitBlock?: boolean;
14879
15306
  ignoreRestSiblings?: boolean;
15307
+ ignoreUsingDeclarations?: boolean;
14880
15308
  reportUsedIgnorePattern?: boolean;
14881
15309
  vars?: ("all" | "local");
14882
15310
  varsIgnorePattern?: string;
@@ -15346,6 +15774,7 @@ type UnusedImportsNoUnusedImports = [] | [(("all" | "local") | {
15346
15774
  destructuredArrayIgnorePattern?: string;
15347
15775
  ignoreClassWithStaticInitBlock?: boolean;
15348
15776
  ignoreRestSiblings?: boolean;
15777
+ ignoreUsingDeclarations?: boolean;
15349
15778
  reportUsedIgnorePattern?: boolean;
15350
15779
  vars?: ("all" | "local");
15351
15780
  varsIgnorePattern?: string;
@@ -15359,6 +15788,7 @@ type UnusedImportsNoUnusedVars = [] | [(("all" | "local") | {
15359
15788
  destructuredArrayIgnorePattern?: string;
15360
15789
  ignoreClassWithStaticInitBlock?: boolean;
15361
15790
  ignoreRestSiblings?: boolean;
15791
+ ignoreUsingDeclarations?: boolean;
15362
15792
  reportUsedIgnorePattern?: boolean;
15363
15793
  vars?: ("all" | "local");
15364
15794
  varsIgnorePattern?: string;
@@ -15410,6 +15840,7 @@ type VueAttributeHyphenation = [] | [("always" | "never")] | [("always" | "never
15410
15840
  type VueAttributesOrder = [] | [{
15411
15841
  order?: (("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT") | ("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT")[])[];
15412
15842
  alphabetical?: boolean;
15843
+ sortLineLength?: boolean;
15413
15844
  }];
15414
15845
  // ----- vue/block-lang -----
15415
15846
  type VueBlockLang = [] | [{
@@ -16056,6 +16487,10 @@ type VueNewLineBetweenMultiLineProperty = [] | [{
16056
16487
  }];
16057
16488
  // ----- vue/next-tick-style -----
16058
16489
  type VueNextTickStyle = [] | [("promise" | "callback")];
16490
+ // ----- vue/no-async-in-computed-properties -----
16491
+ type VueNoAsyncInComputedProperties = [] | [{
16492
+ ignoredObjectNames?: string[];
16493
+ }];
16059
16494
  // ----- vue/no-bare-strings-in-template -----
16060
16495
  type VueNoBareStringsInTemplate = [] | [{
16061
16496
  allowlist?: string[];
@@ -16340,6 +16775,10 @@ type VueNoUselessVBind = [] | [{
16340
16775
  ignoreIncludesComment?: boolean;
16341
16776
  ignoreStringEscape?: boolean;
16342
16777
  }];
16778
+ // ----- vue/no-v-html -----
16779
+ type VueNoVHtml = [] | [{
16780
+ ignorePattern?: string;
16781
+ }];
16343
16782
  // ----- vue/no-v-text-v-html-on-component -----
16344
16783
  type VueNoVTextVHtmlOnComponent = [] | [{
16345
16784
  allow?: string[];