@jimmy.codes/eslint-config 3.28.2 → 3.30.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/README.md +0 -24
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1528 -445
- package/dist/index.d.mts +1528 -445
- package/dist/index.mjs +1 -1
- package/package.json +25 -25
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as eslint_plugin_regexp from 'eslint-plugin-regexp';
|
|
2
2
|
import * as eslint_plugin_react from 'eslint-plugin-react';
|
|
3
3
|
import * as eslint_plugin_n from 'eslint-plugin-n';
|
|
4
|
+
import * as eslint_plugin_import_x_node_resolver_js from 'eslint-plugin-import-x/node-resolver.js';
|
|
4
5
|
import * as eslint_plugin_import_x_utils_resolve_js from 'eslint-plugin-import-x/utils/resolve.js';
|
|
5
6
|
import * as eslint_plugin_import_x_utils_module_visitor_js from 'eslint-plugin-import-x/utils/module-visitor.js';
|
|
6
7
|
import * as eslint_plugin_import_x_types_js from 'eslint-plugin-import-x/types.js';
|
|
@@ -338,7 +339,7 @@ interface RuleOptions {
|
|
|
338
339
|
* Disallow using code marked as `@deprecated`
|
|
339
340
|
* @see https://typescript-eslint.io/rules/no-deprecated
|
|
340
341
|
*/
|
|
341
|
-
'@typescript-eslint/no-deprecated'?: Linter.RuleEntry<
|
|
342
|
+
'@typescript-eslint/no-deprecated'?: Linter.RuleEntry<TypescriptEslintNoDeprecated>
|
|
342
343
|
/**
|
|
343
344
|
* Disallow duplicate class members
|
|
344
345
|
* @see https://typescript-eslint.io/rules/no-dupe-class-members
|
|
@@ -401,7 +402,7 @@ interface RuleOptions {
|
|
|
401
402
|
*/
|
|
402
403
|
'@typescript-eslint/no-for-in-array'?: Linter.RuleEntry<[]>
|
|
403
404
|
/**
|
|
404
|
-
* Disallow the use of `eval()`-like
|
|
405
|
+
* Disallow the use of `eval()`-like functions
|
|
405
406
|
* @see https://typescript-eslint.io/rules/no-implied-eval
|
|
406
407
|
*/
|
|
407
408
|
'@typescript-eslint/no-implied-eval'?: Linter.RuleEntry<[]>
|
|
@@ -456,6 +457,11 @@ interface RuleOptions {
|
|
|
456
457
|
* @see https://typescript-eslint.io/rules/no-misused-promises
|
|
457
458
|
*/
|
|
458
459
|
'@typescript-eslint/no-misused-promises'?: Linter.RuleEntry<TypescriptEslintNoMisusedPromises>
|
|
460
|
+
/**
|
|
461
|
+
* Disallow using the spread operator when it might cause unexpected behavior
|
|
462
|
+
* @see https://typescript-eslint.io/rules/no-misused-spread
|
|
463
|
+
*/
|
|
464
|
+
'@typescript-eslint/no-misused-spread'?: Linter.RuleEntry<TypescriptEslintNoMisusedSpread>
|
|
459
465
|
/**
|
|
460
466
|
* Disallow enums from having both number and string members
|
|
461
467
|
* @see https://typescript-eslint.io/rules/no-mixed-enums
|
|
@@ -654,7 +660,7 @@ interface RuleOptions {
|
|
|
654
660
|
*/
|
|
655
661
|
'@typescript-eslint/no-wrapper-object-types'?: Linter.RuleEntry<[]>
|
|
656
662
|
/**
|
|
657
|
-
* Enforce non-null assertions over explicit type
|
|
663
|
+
* Enforce non-null assertions over explicit type assertions
|
|
658
664
|
* @see https://typescript-eslint.io/rules/non-nullable-type-assertion-style
|
|
659
665
|
*/
|
|
660
666
|
'@typescript-eslint/non-nullable-type-assertion-style'?: Linter.RuleEntry<[]>
|
|
@@ -739,7 +745,7 @@ interface RuleOptions {
|
|
|
739
745
|
*/
|
|
740
746
|
'@typescript-eslint/prefer-readonly-parameter-types'?: Linter.RuleEntry<TypescriptEslintPreferReadonlyParameterTypes>
|
|
741
747
|
/**
|
|
742
|
-
* Enforce using type parameter when calling `Array#reduce` instead of
|
|
748
|
+
* Enforce using type parameter when calling `Array#reduce` instead of using a type assertion
|
|
743
749
|
* @see https://typescript-eslint.io/rules/prefer-reduce-type-parameter
|
|
744
750
|
*/
|
|
745
751
|
'@typescript-eslint/prefer-reduce-type-parameter'?: Linter.RuleEntry<[]>
|
|
@@ -1243,7 +1249,7 @@ interface RuleOptions {
|
|
|
1243
1249
|
*/
|
|
1244
1250
|
'default-case'?: Linter.RuleEntry<DefaultCase>
|
|
1245
1251
|
/**
|
|
1246
|
-
* Enforce default clauses in switch statements to be last
|
|
1252
|
+
* Enforce `default` clauses in `switch` statements to be last
|
|
1247
1253
|
* @see https://eslint.org/docs/latest/rules/default-case-last
|
|
1248
1254
|
*/
|
|
1249
1255
|
'default-case-last'?: Linter.RuleEntry<[]>
|
|
@@ -1275,7 +1281,7 @@ interface RuleOptions {
|
|
|
1275
1281
|
*/
|
|
1276
1282
|
'eqeqeq'?: Linter.RuleEntry<Eqeqeq>
|
|
1277
1283
|
/**
|
|
1278
|
-
* Enforce
|
|
1284
|
+
* Enforce `for` loop update clause moving the counter in the right direction
|
|
1279
1285
|
* @see https://eslint.org/docs/latest/rules/for-direction
|
|
1280
1286
|
*/
|
|
1281
1287
|
'for-direction'?: Linter.RuleEntry<[]>
|
|
@@ -1374,233 +1380,233 @@ interface RuleOptions {
|
|
|
1374
1380
|
'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
|
|
1375
1381
|
/**
|
|
1376
1382
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
1377
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1383
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/consistent-type-specifier-style.md
|
|
1378
1384
|
*/
|
|
1379
1385
|
'import-x/consistent-type-specifier-style'?: Linter.RuleEntry<ImportXConsistentTypeSpecifierStyle>
|
|
1380
1386
|
/**
|
|
1381
1387
|
* Ensure a default export is present, given a default import.
|
|
1382
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1388
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/default.md
|
|
1383
1389
|
*/
|
|
1384
1390
|
'import-x/default'?: Linter.RuleEntry<[]>
|
|
1385
1391
|
/**
|
|
1386
1392
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
1387
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1393
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/dynamic-import-chunkname.md
|
|
1388
1394
|
*/
|
|
1389
1395
|
'import-x/dynamic-import-chunkname'?: Linter.RuleEntry<ImportXDynamicImportChunkname>
|
|
1390
1396
|
/**
|
|
1391
1397
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
1392
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1398
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/export.md
|
|
1393
1399
|
*/
|
|
1394
1400
|
'import-x/export'?: Linter.RuleEntry<[]>
|
|
1395
1401
|
/**
|
|
1396
1402
|
* Ensure all exports appear after other statements.
|
|
1397
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1403
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/exports-last.md
|
|
1398
1404
|
*/
|
|
1399
1405
|
'import-x/exports-last'?: Linter.RuleEntry<[]>
|
|
1400
1406
|
/**
|
|
1401
1407
|
* Ensure consistent use of file extension within the import path.
|
|
1402
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1408
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/extensions.md
|
|
1403
1409
|
*/
|
|
1404
1410
|
'import-x/extensions'?: Linter.RuleEntry<ImportXExtensions>
|
|
1405
1411
|
/**
|
|
1406
1412
|
* Ensure all imports appear before other statements.
|
|
1407
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1413
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/first.md
|
|
1408
1414
|
*/
|
|
1409
1415
|
'import-x/first'?: Linter.RuleEntry<ImportXFirst>
|
|
1410
1416
|
/**
|
|
1411
1417
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
1412
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1418
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/group-exports.md
|
|
1413
1419
|
*/
|
|
1414
1420
|
'import-x/group-exports'?: Linter.RuleEntry<[]>
|
|
1415
1421
|
/**
|
|
1416
1422
|
* Replaced by `import-x/first`.
|
|
1417
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1423
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/imports-first.md
|
|
1418
1424
|
* @deprecated
|
|
1419
1425
|
*/
|
|
1420
1426
|
'import-x/imports-first'?: Linter.RuleEntry<ImportXImportsFirst>
|
|
1421
1427
|
/**
|
|
1422
1428
|
* Enforce the maximum number of dependencies a module can have.
|
|
1423
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1429
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/max-dependencies.md
|
|
1424
1430
|
*/
|
|
1425
1431
|
'import-x/max-dependencies'?: Linter.RuleEntry<ImportXMaxDependencies>
|
|
1426
1432
|
/**
|
|
1427
1433
|
* Ensure named imports correspond to a named export in the remote file.
|
|
1428
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1434
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/named.md
|
|
1429
1435
|
*/
|
|
1430
1436
|
'import-x/named'?: Linter.RuleEntry<ImportXNamed>
|
|
1431
1437
|
/**
|
|
1432
1438
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
1433
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1439
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/namespace.md
|
|
1434
1440
|
*/
|
|
1435
1441
|
'import-x/namespace'?: Linter.RuleEntry<ImportXNamespace>
|
|
1436
1442
|
/**
|
|
1437
1443
|
* Enforce a newline after import statements.
|
|
1438
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1444
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/newline-after-import.md
|
|
1439
1445
|
*/
|
|
1440
1446
|
'import-x/newline-after-import'?: Linter.RuleEntry<ImportXNewlineAfterImport>
|
|
1441
1447
|
/**
|
|
1442
1448
|
* Forbid import of modules using absolute paths.
|
|
1443
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1449
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-absolute-path.md
|
|
1444
1450
|
*/
|
|
1445
1451
|
'import-x/no-absolute-path'?: Linter.RuleEntry<ImportXNoAbsolutePath>
|
|
1446
1452
|
/**
|
|
1447
1453
|
* Forbid AMD `require` and `define` calls.
|
|
1448
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1454
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-amd.md
|
|
1449
1455
|
*/
|
|
1450
1456
|
'import-x/no-amd'?: Linter.RuleEntry<[]>
|
|
1451
1457
|
/**
|
|
1452
1458
|
* Forbid anonymous values as default exports.
|
|
1453
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1459
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-anonymous-default-export.md
|
|
1454
1460
|
*/
|
|
1455
1461
|
'import-x/no-anonymous-default-export'?: Linter.RuleEntry<ImportXNoAnonymousDefaultExport>
|
|
1456
1462
|
/**
|
|
1457
1463
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
1458
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1464
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-commonjs.md
|
|
1459
1465
|
*/
|
|
1460
1466
|
'import-x/no-commonjs'?: Linter.RuleEntry<ImportXNoCommonjs>
|
|
1461
1467
|
/**
|
|
1462
1468
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
1463
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1469
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-cycle.md
|
|
1464
1470
|
*/
|
|
1465
1471
|
'import-x/no-cycle'?: Linter.RuleEntry<ImportXNoCycle>
|
|
1466
1472
|
/**
|
|
1467
1473
|
* Forbid default exports.
|
|
1468
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1474
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-default-export.md
|
|
1469
1475
|
*/
|
|
1470
1476
|
'import-x/no-default-export'?: Linter.RuleEntry<[]>
|
|
1471
1477
|
/**
|
|
1472
1478
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
1473
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1479
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-deprecated.md
|
|
1474
1480
|
*/
|
|
1475
1481
|
'import-x/no-deprecated'?: Linter.RuleEntry<[]>
|
|
1476
1482
|
/**
|
|
1477
1483
|
* Forbid repeated import of the same module in multiple places.
|
|
1478
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1484
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-duplicates.md
|
|
1479
1485
|
*/
|
|
1480
1486
|
'import-x/no-duplicates'?: Linter.RuleEntry<ImportXNoDuplicates>
|
|
1481
1487
|
/**
|
|
1482
1488
|
* Forbid `require()` calls with expressions.
|
|
1483
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1489
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-dynamic-require.md
|
|
1484
1490
|
*/
|
|
1485
1491
|
'import-x/no-dynamic-require'?: Linter.RuleEntry<ImportXNoDynamicRequire>
|
|
1486
1492
|
/**
|
|
1487
1493
|
* Forbid empty named import blocks.
|
|
1488
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1494
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-empty-named-blocks.md
|
|
1489
1495
|
*/
|
|
1490
1496
|
'import-x/no-empty-named-blocks'?: Linter.RuleEntry<[]>
|
|
1491
1497
|
/**
|
|
1492
1498
|
* Forbid the use of extraneous packages.
|
|
1493
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1499
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-extraneous-dependencies.md
|
|
1494
1500
|
*/
|
|
1495
1501
|
'import-x/no-extraneous-dependencies'?: Linter.RuleEntry<ImportXNoExtraneousDependencies>
|
|
1496
1502
|
/**
|
|
1497
1503
|
* Forbid import statements with CommonJS module.exports.
|
|
1498
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1504
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-import-module-exports.md
|
|
1499
1505
|
*/
|
|
1500
1506
|
'import-x/no-import-module-exports'?: Linter.RuleEntry<ImportXNoImportModuleExports>
|
|
1501
1507
|
/**
|
|
1502
1508
|
* Forbid importing the submodules of other modules.
|
|
1503
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1509
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-internal-modules.md
|
|
1504
1510
|
*/
|
|
1505
1511
|
'import-x/no-internal-modules'?: Linter.RuleEntry<ImportXNoInternalModules>
|
|
1506
1512
|
/**
|
|
1507
1513
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
1508
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1514
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-mutable-exports.md
|
|
1509
1515
|
*/
|
|
1510
1516
|
'import-x/no-mutable-exports'?: Linter.RuleEntry<[]>
|
|
1511
1517
|
/**
|
|
1512
1518
|
* Forbid use of exported name as identifier of default export.
|
|
1513
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1519
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default.md
|
|
1514
1520
|
*/
|
|
1515
1521
|
'import-x/no-named-as-default'?: Linter.RuleEntry<[]>
|
|
1516
1522
|
/**
|
|
1517
1523
|
* Forbid use of exported name as property of default export.
|
|
1518
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1524
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default-member.md
|
|
1519
1525
|
*/
|
|
1520
1526
|
'import-x/no-named-as-default-member'?: Linter.RuleEntry<[]>
|
|
1521
1527
|
/**
|
|
1522
1528
|
* Forbid named default exports.
|
|
1523
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1529
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-default.md
|
|
1524
1530
|
*/
|
|
1525
1531
|
'import-x/no-named-default'?: Linter.RuleEntry<[]>
|
|
1526
1532
|
/**
|
|
1527
1533
|
* Forbid named exports.
|
|
1528
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1534
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-export.md
|
|
1529
1535
|
*/
|
|
1530
1536
|
'import-x/no-named-export'?: Linter.RuleEntry<[]>
|
|
1531
1537
|
/**
|
|
1532
1538
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
1533
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1539
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-namespace.md
|
|
1534
1540
|
*/
|
|
1535
1541
|
'import-x/no-namespace'?: Linter.RuleEntry<ImportXNoNamespace>
|
|
1536
1542
|
/**
|
|
1537
1543
|
* Forbid Node.js builtin modules.
|
|
1538
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1544
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-nodejs-modules.md
|
|
1539
1545
|
*/
|
|
1540
1546
|
'import-x/no-nodejs-modules'?: Linter.RuleEntry<ImportXNoNodejsModules>
|
|
1541
1547
|
/**
|
|
1542
1548
|
* Forbid importing packages through relative paths.
|
|
1543
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1549
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-packages.md
|
|
1544
1550
|
*/
|
|
1545
1551
|
'import-x/no-relative-packages'?: Linter.RuleEntry<ImportXNoRelativePackages>
|
|
1546
1552
|
/**
|
|
1547
1553
|
* Forbid importing modules from parent directories.
|
|
1548
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1554
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-parent-imports.md
|
|
1549
1555
|
*/
|
|
1550
1556
|
'import-x/no-relative-parent-imports'?: Linter.RuleEntry<ImportXNoRelativeParentImports>
|
|
1551
1557
|
/**
|
|
1552
1558
|
* Forbid importing a default export by a different name.
|
|
1553
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1559
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-rename-default.md
|
|
1554
1560
|
*/
|
|
1555
1561
|
'import-x/no-rename-default'?: Linter.RuleEntry<ImportXNoRenameDefault>
|
|
1556
1562
|
/**
|
|
1557
1563
|
* Enforce which files can be imported in a given folder.
|
|
1558
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1564
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-restricted-paths.md
|
|
1559
1565
|
*/
|
|
1560
1566
|
'import-x/no-restricted-paths'?: Linter.RuleEntry<ImportXNoRestrictedPaths>
|
|
1561
1567
|
/**
|
|
1562
1568
|
* Forbid a module from importing itself.
|
|
1563
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1569
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-self-import.md
|
|
1564
1570
|
*/
|
|
1565
1571
|
'import-x/no-self-import'?: Linter.RuleEntry<[]>
|
|
1566
1572
|
/**
|
|
1567
1573
|
* Forbid unassigned imports.
|
|
1568
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1574
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unassigned-import.md
|
|
1569
1575
|
*/
|
|
1570
1576
|
'import-x/no-unassigned-import'?: Linter.RuleEntry<ImportXNoUnassignedImport>
|
|
1571
1577
|
/**
|
|
1572
1578
|
* Ensure imports point to a file/module that can be resolved.
|
|
1573
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1579
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unresolved.md
|
|
1574
1580
|
*/
|
|
1575
1581
|
'import-x/no-unresolved'?: Linter.RuleEntry<ImportXNoUnresolved>
|
|
1576
1582
|
/**
|
|
1577
1583
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
1578
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1584
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unused-modules.md
|
|
1579
1585
|
*/
|
|
1580
1586
|
'import-x/no-unused-modules'?: Linter.RuleEntry<ImportXNoUnusedModules>
|
|
1581
1587
|
/**
|
|
1582
1588
|
* Forbid unnecessary path segments in import and require statements.
|
|
1583
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1589
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-useless-path-segments.md
|
|
1584
1590
|
*/
|
|
1585
1591
|
'import-x/no-useless-path-segments'?: Linter.RuleEntry<ImportXNoUselessPathSegments>
|
|
1586
1592
|
/**
|
|
1587
1593
|
* Forbid webpack loader syntax in imports.
|
|
1588
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1594
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-webpack-loader-syntax.md
|
|
1589
1595
|
*/
|
|
1590
1596
|
'import-x/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
|
|
1591
1597
|
/**
|
|
1592
1598
|
* Enforce a convention in module import order.
|
|
1593
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1599
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/order.md
|
|
1594
1600
|
*/
|
|
1595
1601
|
'import-x/order'?: Linter.RuleEntry<ImportXOrder>
|
|
1596
1602
|
/**
|
|
1597
1603
|
* Prefer a default export if module exports a single name or multiple names.
|
|
1598
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1604
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/prefer-default-export.md
|
|
1599
1605
|
*/
|
|
1600
1606
|
'import-x/prefer-default-export'?: Linter.RuleEntry<ImportXPreferDefaultExport>
|
|
1601
1607
|
/**
|
|
1602
1608
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
1603
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
1609
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/unambiguous.md
|
|
1604
1610
|
*/
|
|
1605
1611
|
'import-x/unambiguous'?: Linter.RuleEntry<[]>
|
|
1606
1612
|
/**
|
|
@@ -1677,312 +1683,312 @@ interface RuleOptions {
|
|
|
1677
1683
|
'jest-dom/prefer-to-have-value'?: Linter.RuleEntry<[]>
|
|
1678
1684
|
/**
|
|
1679
1685
|
* Enforce `test` and `it` usage conventions
|
|
1680
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1686
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/consistent-test-it.md
|
|
1681
1687
|
*/
|
|
1682
1688
|
'jest/consistent-test-it'?: Linter.RuleEntry<JestConsistentTestIt>
|
|
1683
1689
|
/**
|
|
1684
1690
|
* Enforce assertion to be made in a test body
|
|
1685
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1691
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/expect-expect.md
|
|
1686
1692
|
*/
|
|
1687
1693
|
'jest/expect-expect'?: Linter.RuleEntry<JestExpectExpect>
|
|
1688
1694
|
/**
|
|
1689
1695
|
* Enforces a maximum number assertion calls in a test body
|
|
1690
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1696
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/max-expects.md
|
|
1691
1697
|
*/
|
|
1692
1698
|
'jest/max-expects'?: Linter.RuleEntry<JestMaxExpects>
|
|
1693
1699
|
/**
|
|
1694
1700
|
* Enforces a maximum depth to nested describe calls
|
|
1695
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1701
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/max-nested-describe.md
|
|
1696
1702
|
*/
|
|
1697
1703
|
'jest/max-nested-describe'?: Linter.RuleEntry<JestMaxNestedDescribe>
|
|
1698
1704
|
/**
|
|
1699
1705
|
* Disallow alias methods
|
|
1700
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1706
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-alias-methods.md
|
|
1701
1707
|
*/
|
|
1702
1708
|
'jest/no-alias-methods'?: Linter.RuleEntry<[]>
|
|
1703
1709
|
/**
|
|
1704
1710
|
* Disallow commented out tests
|
|
1705
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1711
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-commented-out-tests.md
|
|
1706
1712
|
*/
|
|
1707
1713
|
'jest/no-commented-out-tests'?: Linter.RuleEntry<[]>
|
|
1708
1714
|
/**
|
|
1709
1715
|
* Disallow calling `expect` conditionally
|
|
1710
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1716
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-conditional-expect.md
|
|
1711
1717
|
*/
|
|
1712
1718
|
'jest/no-conditional-expect'?: Linter.RuleEntry<[]>
|
|
1713
1719
|
/**
|
|
1714
1720
|
* Disallow conditional logic in tests
|
|
1715
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1721
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-conditional-in-test.md
|
|
1716
1722
|
*/
|
|
1717
1723
|
'jest/no-conditional-in-test'?: Linter.RuleEntry<[]>
|
|
1718
1724
|
/**
|
|
1719
1725
|
* Disallow confusing usages of jest.setTimeout
|
|
1720
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1726
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-confusing-set-timeout.md
|
|
1721
1727
|
*/
|
|
1722
1728
|
'jest/no-confusing-set-timeout'?: Linter.RuleEntry<[]>
|
|
1723
1729
|
/**
|
|
1724
1730
|
* Disallow use of deprecated functions
|
|
1725
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1731
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-deprecated-functions.md
|
|
1726
1732
|
*/
|
|
1727
1733
|
'jest/no-deprecated-functions'?: Linter.RuleEntry<[]>
|
|
1728
1734
|
/**
|
|
1729
1735
|
* Disallow disabled tests
|
|
1730
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1736
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-disabled-tests.md
|
|
1731
1737
|
*/
|
|
1732
1738
|
'jest/no-disabled-tests'?: Linter.RuleEntry<[]>
|
|
1733
1739
|
/**
|
|
1734
1740
|
* Disallow using a callback in asynchronous tests and hooks
|
|
1735
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1741
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-done-callback.md
|
|
1736
1742
|
*/
|
|
1737
1743
|
'jest/no-done-callback'?: Linter.RuleEntry<[]>
|
|
1738
1744
|
/**
|
|
1739
1745
|
* Disallow duplicate setup and teardown hooks
|
|
1740
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1746
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-duplicate-hooks.md
|
|
1741
1747
|
*/
|
|
1742
1748
|
'jest/no-duplicate-hooks'?: Linter.RuleEntry<[]>
|
|
1743
1749
|
/**
|
|
1744
1750
|
* Disallow using `exports` in files containing tests
|
|
1745
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1751
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-export.md
|
|
1746
1752
|
*/
|
|
1747
1753
|
'jest/no-export'?: Linter.RuleEntry<[]>
|
|
1748
1754
|
/**
|
|
1749
1755
|
* Disallow focused tests
|
|
1750
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1756
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-focused-tests.md
|
|
1751
1757
|
*/
|
|
1752
1758
|
'jest/no-focused-tests'?: Linter.RuleEntry<[]>
|
|
1753
1759
|
/**
|
|
1754
1760
|
* Disallow setup and teardown hooks
|
|
1755
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1761
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-hooks.md
|
|
1756
1762
|
*/
|
|
1757
1763
|
'jest/no-hooks'?: Linter.RuleEntry<JestNoHooks>
|
|
1758
1764
|
/**
|
|
1759
1765
|
* Disallow identical titles
|
|
1760
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1766
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-identical-title.md
|
|
1761
1767
|
*/
|
|
1762
1768
|
'jest/no-identical-title'?: Linter.RuleEntry<[]>
|
|
1763
1769
|
/**
|
|
1764
1770
|
* Disallow string interpolation inside snapshots
|
|
1765
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1771
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-interpolation-in-snapshots.md
|
|
1766
1772
|
*/
|
|
1767
1773
|
'jest/no-interpolation-in-snapshots'?: Linter.RuleEntry<[]>
|
|
1768
1774
|
/**
|
|
1769
1775
|
* Disallow Jasmine globals
|
|
1770
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1776
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-jasmine-globals.md
|
|
1771
1777
|
*/
|
|
1772
1778
|
'jest/no-jasmine-globals'?: Linter.RuleEntry<[]>
|
|
1773
1779
|
/**
|
|
1774
1780
|
* Disallow large snapshots
|
|
1775
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1781
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-large-snapshots.md
|
|
1776
1782
|
*/
|
|
1777
1783
|
'jest/no-large-snapshots'?: Linter.RuleEntry<JestNoLargeSnapshots>
|
|
1778
1784
|
/**
|
|
1779
1785
|
* Disallow manually importing from `__mocks__`
|
|
1780
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1786
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-mocks-import.md
|
|
1781
1787
|
*/
|
|
1782
1788
|
'jest/no-mocks-import'?: Linter.RuleEntry<[]>
|
|
1783
1789
|
/**
|
|
1784
1790
|
* Disallow specific `jest.` methods
|
|
1785
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1791
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-restricted-jest-methods.md
|
|
1786
1792
|
*/
|
|
1787
1793
|
'jest/no-restricted-jest-methods'?: Linter.RuleEntry<JestNoRestrictedJestMethods>
|
|
1788
1794
|
/**
|
|
1789
1795
|
* Disallow specific matchers & modifiers
|
|
1790
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1796
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-restricted-matchers.md
|
|
1791
1797
|
*/
|
|
1792
1798
|
'jest/no-restricted-matchers'?: Linter.RuleEntry<JestNoRestrictedMatchers>
|
|
1793
1799
|
/**
|
|
1794
1800
|
* Disallow using `expect` outside of `it` or `test` blocks
|
|
1795
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1801
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-standalone-expect.md
|
|
1796
1802
|
*/
|
|
1797
1803
|
'jest/no-standalone-expect'?: Linter.RuleEntry<JestNoStandaloneExpect>
|
|
1798
1804
|
/**
|
|
1799
1805
|
* Require using `.only` and `.skip` over `f` and `x`
|
|
1800
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1806
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-test-prefixes.md
|
|
1801
1807
|
*/
|
|
1802
1808
|
'jest/no-test-prefixes'?: Linter.RuleEntry<[]>
|
|
1803
1809
|
/**
|
|
1804
1810
|
* Disallow explicitly returning from tests
|
|
1805
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1811
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-test-return-statement.md
|
|
1806
1812
|
*/
|
|
1807
1813
|
'jest/no-test-return-statement'?: Linter.RuleEntry<[]>
|
|
1808
1814
|
/**
|
|
1809
1815
|
* Disallow using `jest.mock()` factories without an explicit type parameter
|
|
1810
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1816
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/no-untyped-mock-factory.md
|
|
1811
1817
|
*/
|
|
1812
1818
|
'jest/no-untyped-mock-factory'?: Linter.RuleEntry<[]>
|
|
1813
1819
|
/**
|
|
1814
1820
|
* Enforce padding around `afterAll` blocks
|
|
1815
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1821
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/padding-around-after-all-blocks.md
|
|
1816
1822
|
*/
|
|
1817
1823
|
'jest/padding-around-after-all-blocks'?: Linter.RuleEntry<[]>
|
|
1818
1824
|
/**
|
|
1819
1825
|
* Enforce padding around `afterEach` blocks
|
|
1820
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1826
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/padding-around-after-each-blocks.md
|
|
1821
1827
|
*/
|
|
1822
1828
|
'jest/padding-around-after-each-blocks'?: Linter.RuleEntry<[]>
|
|
1823
1829
|
/**
|
|
1824
1830
|
* Enforce padding around Jest functions
|
|
1825
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1831
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/padding-around-all.md
|
|
1826
1832
|
*/
|
|
1827
1833
|
'jest/padding-around-all'?: Linter.RuleEntry<[]>
|
|
1828
1834
|
/**
|
|
1829
1835
|
* Enforce padding around `beforeAll` blocks
|
|
1830
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1836
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/padding-around-before-all-blocks.md
|
|
1831
1837
|
*/
|
|
1832
1838
|
'jest/padding-around-before-all-blocks'?: Linter.RuleEntry<[]>
|
|
1833
1839
|
/**
|
|
1834
1840
|
* Enforce padding around `beforeEach` blocks
|
|
1835
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1841
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/padding-around-before-each-blocks.md
|
|
1836
1842
|
*/
|
|
1837
1843
|
'jest/padding-around-before-each-blocks'?: Linter.RuleEntry<[]>
|
|
1838
1844
|
/**
|
|
1839
1845
|
* Enforce padding around `describe` blocks
|
|
1840
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1846
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/padding-around-describe-blocks.md
|
|
1841
1847
|
*/
|
|
1842
1848
|
'jest/padding-around-describe-blocks'?: Linter.RuleEntry<[]>
|
|
1843
1849
|
/**
|
|
1844
1850
|
* Enforce padding around `expect` groups
|
|
1845
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1851
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/padding-around-expect-groups.md
|
|
1846
1852
|
*/
|
|
1847
1853
|
'jest/padding-around-expect-groups'?: Linter.RuleEntry<[]>
|
|
1848
1854
|
/**
|
|
1849
|
-
* Enforce padding around
|
|
1850
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1855
|
+
* Enforce padding around `test` and `it` blocks
|
|
1856
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/padding-around-test-blocks.md
|
|
1851
1857
|
*/
|
|
1852
1858
|
'jest/padding-around-test-blocks'?: Linter.RuleEntry<[]>
|
|
1853
1859
|
/**
|
|
1854
1860
|
* Suggest using `toBeCalledWith()` or `toHaveBeenCalledWith()`
|
|
1855
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1861
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-called-with.md
|
|
1856
1862
|
*/
|
|
1857
1863
|
'jest/prefer-called-with'?: Linter.RuleEntry<[]>
|
|
1858
1864
|
/**
|
|
1859
1865
|
* Suggest using the built-in comparison matchers
|
|
1860
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1866
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-comparison-matcher.md
|
|
1861
1867
|
*/
|
|
1862
1868
|
'jest/prefer-comparison-matcher'?: Linter.RuleEntry<[]>
|
|
1863
1869
|
/**
|
|
1864
1870
|
* Prefer using `.each` rather than manual loops
|
|
1865
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1871
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-each.md
|
|
1866
1872
|
*/
|
|
1867
1873
|
'jest/prefer-each'?: Linter.RuleEntry<[]>
|
|
1868
1874
|
/**
|
|
1869
1875
|
* Suggest using the built-in equality matchers
|
|
1870
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1876
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-equality-matcher.md
|
|
1871
1877
|
*/
|
|
1872
1878
|
'jest/prefer-equality-matcher'?: Linter.RuleEntry<[]>
|
|
1873
1879
|
/**
|
|
1874
1880
|
* Suggest using `expect.assertions()` OR `expect.hasAssertions()`
|
|
1875
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1881
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-expect-assertions.md
|
|
1876
1882
|
*/
|
|
1877
1883
|
'jest/prefer-expect-assertions'?: Linter.RuleEntry<JestPreferExpectAssertions>
|
|
1878
1884
|
/**
|
|
1879
1885
|
* Prefer `await expect(...).resolves` over `expect(await ...)` syntax
|
|
1880
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1886
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-expect-resolves.md
|
|
1881
1887
|
*/
|
|
1882
1888
|
'jest/prefer-expect-resolves'?: Linter.RuleEntry<[]>
|
|
1883
1889
|
/**
|
|
1884
1890
|
* Prefer having hooks in a consistent order
|
|
1885
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1891
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-hooks-in-order.md
|
|
1886
1892
|
*/
|
|
1887
1893
|
'jest/prefer-hooks-in-order'?: Linter.RuleEntry<[]>
|
|
1888
1894
|
/**
|
|
1889
1895
|
* Suggest having hooks before any test cases
|
|
1890
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1896
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-hooks-on-top.md
|
|
1891
1897
|
*/
|
|
1892
1898
|
'jest/prefer-hooks-on-top'?: Linter.RuleEntry<[]>
|
|
1893
1899
|
/**
|
|
1894
1900
|
* Prefer importing Jest globals
|
|
1895
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1901
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-importing-jest-globals.md
|
|
1896
1902
|
*/
|
|
1897
1903
|
'jest/prefer-importing-jest-globals'?: Linter.RuleEntry<JestPreferImportingJestGlobals>
|
|
1898
1904
|
/**
|
|
1899
1905
|
* Prefer `jest.mocked()` over `fn as jest.Mock`
|
|
1900
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1906
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-jest-mocked.md
|
|
1901
1907
|
*/
|
|
1902
1908
|
'jest/prefer-jest-mocked'?: Linter.RuleEntry<[]>
|
|
1903
1909
|
/**
|
|
1904
1910
|
* Enforce lowercase test names
|
|
1905
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1911
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-lowercase-title.md
|
|
1906
1912
|
*/
|
|
1907
1913
|
'jest/prefer-lowercase-title'?: Linter.RuleEntry<JestPreferLowercaseTitle>
|
|
1908
1914
|
/**
|
|
1909
1915
|
* Prefer mock resolved/rejected shorthands for promises
|
|
1910
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1916
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-mock-promise-shorthand.md
|
|
1911
1917
|
*/
|
|
1912
1918
|
'jest/prefer-mock-promise-shorthand'?: Linter.RuleEntry<[]>
|
|
1913
1919
|
/**
|
|
1914
1920
|
* Prefer including a hint with external snapshots
|
|
1915
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1921
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-snapshot-hint.md
|
|
1916
1922
|
*/
|
|
1917
1923
|
'jest/prefer-snapshot-hint'?: Linter.RuleEntry<JestPreferSnapshotHint>
|
|
1918
1924
|
/**
|
|
1919
1925
|
* Suggest using `jest.spyOn()`
|
|
1920
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1926
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-spy-on.md
|
|
1921
1927
|
*/
|
|
1922
1928
|
'jest/prefer-spy-on'?: Linter.RuleEntry<[]>
|
|
1923
1929
|
/**
|
|
1924
1930
|
* Suggest using `toStrictEqual()`
|
|
1925
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1931
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-strict-equal.md
|
|
1926
1932
|
*/
|
|
1927
1933
|
'jest/prefer-strict-equal'?: Linter.RuleEntry<[]>
|
|
1928
1934
|
/**
|
|
1929
1935
|
* Suggest using `toBe()` for primitive literals
|
|
1930
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1936
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-to-be.md
|
|
1931
1937
|
*/
|
|
1932
1938
|
'jest/prefer-to-be'?: Linter.RuleEntry<[]>
|
|
1933
1939
|
/**
|
|
1934
1940
|
* Suggest using `toContain()`
|
|
1935
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1941
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-to-contain.md
|
|
1936
1942
|
*/
|
|
1937
1943
|
'jest/prefer-to-contain'?: Linter.RuleEntry<[]>
|
|
1938
1944
|
/**
|
|
1939
1945
|
* Suggest using `toHaveLength()`
|
|
1940
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1946
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-to-have-length.md
|
|
1941
1947
|
*/
|
|
1942
1948
|
'jest/prefer-to-have-length'?: Linter.RuleEntry<[]>
|
|
1943
1949
|
/**
|
|
1944
1950
|
* Suggest using `test.todo`
|
|
1945
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1951
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/prefer-todo.md
|
|
1946
1952
|
*/
|
|
1947
1953
|
'jest/prefer-todo'?: Linter.RuleEntry<[]>
|
|
1948
1954
|
/**
|
|
1949
1955
|
* Require setup and teardown code to be within a hook
|
|
1950
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1956
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/require-hook.md
|
|
1951
1957
|
*/
|
|
1952
1958
|
'jest/require-hook'?: Linter.RuleEntry<JestRequireHook>
|
|
1953
1959
|
/**
|
|
1954
1960
|
* Require a message for `toThrow()`
|
|
1955
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1961
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/require-to-throw-message.md
|
|
1956
1962
|
*/
|
|
1957
1963
|
'jest/require-to-throw-message'?: Linter.RuleEntry<[]>
|
|
1958
1964
|
/**
|
|
1959
1965
|
* Require test cases and hooks to be inside a `describe` block
|
|
1960
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1966
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/require-top-level-describe.md
|
|
1961
1967
|
*/
|
|
1962
1968
|
'jest/require-top-level-describe'?: Linter.RuleEntry<JestRequireTopLevelDescribe>
|
|
1963
1969
|
/**
|
|
1964
1970
|
* Enforce unbound methods are called with their expected scope
|
|
1965
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1971
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/unbound-method.md
|
|
1966
1972
|
*/
|
|
1967
1973
|
'jest/unbound-method'?: Linter.RuleEntry<JestUnboundMethod>
|
|
1968
1974
|
/**
|
|
1969
1975
|
* Enforce valid `describe()` callback
|
|
1970
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1976
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/valid-describe-callback.md
|
|
1971
1977
|
*/
|
|
1972
1978
|
'jest/valid-describe-callback'?: Linter.RuleEntry<[]>
|
|
1973
1979
|
/**
|
|
1974
1980
|
* Enforce valid `expect()` usage
|
|
1975
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1981
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/valid-expect.md
|
|
1976
1982
|
*/
|
|
1977
1983
|
'jest/valid-expect'?: Linter.RuleEntry<JestValidExpect>
|
|
1978
1984
|
/**
|
|
1979
1985
|
* Require promises that have expectations in their chain to be valid
|
|
1980
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1986
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/valid-expect-in-promise.md
|
|
1981
1987
|
*/
|
|
1982
1988
|
'jest/valid-expect-in-promise'?: Linter.RuleEntry<[]>
|
|
1983
1989
|
/**
|
|
1984
1990
|
* Enforce valid titles
|
|
1985
|
-
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.
|
|
1991
|
+
* @see https://github.com/jest-community/eslint-plugin-jest/blob/v28.11.0/docs/rules/valid-title.md
|
|
1986
1992
|
*/
|
|
1987
1993
|
'jest/valid-title'?: Linter.RuleEntry<JestValidTitle>
|
|
1988
1994
|
/**
|
|
@@ -3273,7 +3279,7 @@ interface RuleOptions {
|
|
|
3273
3279
|
*/
|
|
3274
3280
|
'no-octal-escape'?: Linter.RuleEntry<[]>
|
|
3275
3281
|
/**
|
|
3276
|
-
* Disallow reassigning
|
|
3282
|
+
* Disallow reassigning function parameters
|
|
3277
3283
|
* @see https://eslint.org/docs/latest/rules/no-param-reassign
|
|
3278
3284
|
*/
|
|
3279
3285
|
'no-param-reassign'?: Linter.RuleEntry<NoParamReassign>
|
|
@@ -3368,7 +3374,7 @@ interface RuleOptions {
|
|
|
3368
3374
|
*/
|
|
3369
3375
|
'no-return-await'?: Linter.RuleEntry<[]>
|
|
3370
3376
|
/**
|
|
3371
|
-
* Disallow `javascript:`
|
|
3377
|
+
* Disallow `javascript:` URLs
|
|
3372
3378
|
* @see https://eslint.org/docs/latest/rules/no-script-url
|
|
3373
3379
|
*/
|
|
3374
3380
|
'no-script-url'?: Linter.RuleEntry<[]>
|
|
@@ -3880,6 +3886,11 @@ interface RuleOptions {
|
|
|
3880
3886
|
* @see https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-skipped-test.md
|
|
3881
3887
|
*/
|
|
3882
3888
|
'playwright/no-skipped-test'?: Linter.RuleEntry<PlaywrightNoSkippedTest>
|
|
3889
|
+
/**
|
|
3890
|
+
* Prevent usage of the `.slow()` slow test annotation.
|
|
3891
|
+
* @see https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-slowed-test.md
|
|
3892
|
+
*/
|
|
3893
|
+
'playwright/no-slowed-test'?: Linter.RuleEntry<PlaywrightNoSlowedTest>
|
|
3883
3894
|
/**
|
|
3884
3895
|
* Disallow using `expect` outside of `test` blocks
|
|
3885
3896
|
* @see https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-standalone-expect.md
|
|
@@ -3912,7 +3923,7 @@ interface RuleOptions {
|
|
|
3912
3923
|
'playwright/no-wait-for-timeout'?: Linter.RuleEntry<[]>
|
|
3913
3924
|
/**
|
|
3914
3925
|
* Suggest using the built-in comparison matchers
|
|
3915
|
-
* @see https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-
|
|
3926
|
+
* @see https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-comparison-matcher.md
|
|
3916
3927
|
*/
|
|
3917
3928
|
'playwright/prefer-comparison-matcher'?: Linter.RuleEntry<[]>
|
|
3918
3929
|
/**
|
|
@@ -4051,7 +4062,7 @@ interface RuleOptions {
|
|
|
4051
4062
|
*/
|
|
4052
4063
|
'prefer-object-has-own'?: Linter.RuleEntry<[]>
|
|
4053
4064
|
/**
|
|
4054
|
-
* Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead
|
|
4065
|
+
* Disallow using `Object.assign` with an object literal as the first argument and prefer the use of object spread instead
|
|
4055
4066
|
* @see https://eslint.org/docs/latest/rules/prefer-object-spread
|
|
4056
4067
|
*/
|
|
4057
4068
|
'prefer-object-spread'?: Linter.RuleEntry<[]>
|
|
@@ -5056,7 +5067,7 @@ interface RuleOptions {
|
|
|
5056
5067
|
*/
|
|
5057
5068
|
'require-await'?: Linter.RuleEntry<[]>
|
|
5058
5069
|
/**
|
|
5059
|
-
* Enforce the use of `u` or `v` flag on
|
|
5070
|
+
* Enforce the use of `u` or `v` flag on regular expressions
|
|
5060
5071
|
* @see https://eslint.org/docs/latest/rules/require-unicode-regexp
|
|
5061
5072
|
*/
|
|
5062
5073
|
'require-unicode-regexp'?: Linter.RuleEntry<RequireUnicodeRegexp>
|
|
@@ -5090,7 +5101,7 @@ interface RuleOptions {
|
|
|
5090
5101
|
*/
|
|
5091
5102
|
'semi-style'?: Linter.RuleEntry<SemiStyle>
|
|
5092
5103
|
/**
|
|
5093
|
-
* Enforce sorted import declarations within modules
|
|
5104
|
+
* Enforce sorted `import` declarations within modules
|
|
5094
5105
|
* @see https://eslint.org/docs/latest/rules/sort-imports
|
|
5095
5106
|
*/
|
|
5096
5107
|
'sort-imports'?: Linter.RuleEntry<SortImports>
|
|
@@ -6255,7 +6266,7 @@ interface RuleOptions {
|
|
|
6255
6266
|
*/
|
|
6256
6267
|
'vitest/padding-around-expect-groups'?: Linter.RuleEntry<[]>
|
|
6257
6268
|
/**
|
|
6258
|
-
* Enforce padding around
|
|
6269
|
+
* Enforce padding around `test` blocks
|
|
6259
6270
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-test-blocks.md
|
|
6260
6271
|
*/
|
|
6261
6272
|
'vitest/padding-around-test-blocks'?: Linter.RuleEntry<[]>
|
|
@@ -6319,6 +6330,11 @@ interface RuleOptions {
|
|
|
6319
6330
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-spy-on.md
|
|
6320
6331
|
*/
|
|
6321
6332
|
'vitest/prefer-spy-on'?: Linter.RuleEntry<[]>
|
|
6333
|
+
/**
|
|
6334
|
+
* enforce using `toBe(true)` and `toBe(false)` over matchers that coerce types to boolean
|
|
6335
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-strict-boolean-matchers.md
|
|
6336
|
+
*/
|
|
6337
|
+
'vitest/prefer-strict-boolean-matchers'?: Linter.RuleEntry<[]>
|
|
6322
6338
|
/**
|
|
6323
6339
|
* enforce strict equal over equal
|
|
6324
6340
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-strict-equal.md
|
|
@@ -6360,7 +6376,7 @@ interface RuleOptions {
|
|
|
6360
6376
|
*/
|
|
6361
6377
|
'vitest/prefer-todo'?: Linter.RuleEntry<[]>
|
|
6362
6378
|
/**
|
|
6363
|
-
*
|
|
6379
|
+
* require `vi.mocked()` over `fn as Mock`
|
|
6364
6380
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
|
|
6365
6381
|
*/
|
|
6366
6382
|
'vitest/prefer-vi-mocked'?: Linter.RuleEntry<[]>
|
|
@@ -6374,6 +6390,11 @@ interface RuleOptions {
|
|
|
6374
6390
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-local-test-context-for-concurrent-snapshots.md
|
|
6375
6391
|
*/
|
|
6376
6392
|
'vitest/require-local-test-context-for-concurrent-snapshots'?: Linter.RuleEntry<[]>
|
|
6393
|
+
/**
|
|
6394
|
+
* enforce using type parameters with vitest mock functions
|
|
6395
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-mock-type-parameters.md
|
|
6396
|
+
*/
|
|
6397
|
+
'vitest/require-mock-type-parameters'?: Linter.RuleEntry<VitestRequireMockTypeParameters>
|
|
6377
6398
|
/**
|
|
6378
6399
|
* require toThrow() to be called with an error message
|
|
6379
6400
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-to-throw-message.md
|
|
@@ -6395,7 +6416,7 @@ interface RuleOptions {
|
|
|
6395
6416
|
*/
|
|
6396
6417
|
'vitest/valid-expect'?: Linter.RuleEntry<VitestValidExpect>
|
|
6397
6418
|
/**
|
|
6398
|
-
*
|
|
6419
|
+
* require promises that have expectations in their chain to be valid
|
|
6399
6420
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-expect-in-promise.md
|
|
6400
6421
|
*/
|
|
6401
6422
|
'vitest/valid-expect-in-promise'?: Linter.RuleEntry<[]>
|
|
@@ -6497,7 +6518,9 @@ type TypescriptEslintConsistentTypeAssertions = []|[({
|
|
|
6497
6518
|
assertionStyle: "never"
|
|
6498
6519
|
} | {
|
|
6499
6520
|
|
|
6500
|
-
|
|
6521
|
+
arrayLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
|
|
6522
|
+
|
|
6523
|
+
assertionStyle?: ("as" | "angle-bracket")
|
|
6501
6524
|
|
|
6502
6525
|
objectLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
|
|
6503
6526
|
})]
|
|
@@ -6953,6 +6976,22 @@ type TypescriptEslintNoConfusingVoidExpression = []|[{
|
|
|
6953
6976
|
|
|
6954
6977
|
ignoreVoidReturningFunctions?: boolean
|
|
6955
6978
|
}]
|
|
6979
|
+
// ----- @typescript-eslint/no-deprecated -----
|
|
6980
|
+
type TypescriptEslintNoDeprecated = []|[{
|
|
6981
|
+
|
|
6982
|
+
allow?: (string | {
|
|
6983
|
+
from: "file"
|
|
6984
|
+
name: (string | [string, ...(string)[]])
|
|
6985
|
+
path?: string
|
|
6986
|
+
} | {
|
|
6987
|
+
from: "lib"
|
|
6988
|
+
name: (string | [string, ...(string)[]])
|
|
6989
|
+
} | {
|
|
6990
|
+
from: "package"
|
|
6991
|
+
name: (string | [string, ...(string)[]])
|
|
6992
|
+
package: string
|
|
6993
|
+
})[]
|
|
6994
|
+
}]
|
|
6956
6995
|
// ----- @typescript-eslint/no-duplicate-type-constituents -----
|
|
6957
6996
|
type TypescriptEslintNoDuplicateTypeConstituents = []|[{
|
|
6958
6997
|
|
|
@@ -7094,6 +7133,22 @@ type TypescriptEslintNoMisusedPromises = []|[{
|
|
|
7094
7133
|
variables?: boolean
|
|
7095
7134
|
})
|
|
7096
7135
|
}]
|
|
7136
|
+
// ----- @typescript-eslint/no-misused-spread -----
|
|
7137
|
+
type TypescriptEslintNoMisusedSpread = []|[{
|
|
7138
|
+
|
|
7139
|
+
allow?: (string | {
|
|
7140
|
+
from: "file"
|
|
7141
|
+
name: (string | [string, ...(string)[]])
|
|
7142
|
+
path?: string
|
|
7143
|
+
} | {
|
|
7144
|
+
from: "lib"
|
|
7145
|
+
name: (string | [string, ...(string)[]])
|
|
7146
|
+
} | {
|
|
7147
|
+
from: "package"
|
|
7148
|
+
name: (string | [string, ...(string)[]])
|
|
7149
|
+
package: string
|
|
7150
|
+
})[]
|
|
7151
|
+
}]
|
|
7097
7152
|
// ----- @typescript-eslint/no-namespace -----
|
|
7098
7153
|
type TypescriptEslintNoNamespace = []|[{
|
|
7099
7154
|
|
|
@@ -7169,7 +7224,7 @@ type TypescriptEslintNoShadow = []|[{
|
|
|
7169
7224
|
|
|
7170
7225
|
builtinGlobals?: boolean
|
|
7171
7226
|
|
|
7172
|
-
hoist?: ("all" | "functions" | "never")
|
|
7227
|
+
hoist?: ("all" | "functions" | "functions-and-types" | "never" | "types")
|
|
7173
7228
|
|
|
7174
7229
|
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
7175
7230
|
|
|
@@ -7209,11 +7264,13 @@ type TypescriptEslintNoUnnecessaryBooleanLiteralCompare = []|[{
|
|
|
7209
7264
|
allowComparingNullableBooleansToFalse?: boolean
|
|
7210
7265
|
|
|
7211
7266
|
allowComparingNullableBooleansToTrue?: boolean
|
|
7267
|
+
|
|
7268
|
+
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
7212
7269
|
}]
|
|
7213
7270
|
// ----- @typescript-eslint/no-unnecessary-condition -----
|
|
7214
7271
|
type TypescriptEslintNoUnnecessaryCondition = []|[{
|
|
7215
7272
|
|
|
7216
|
-
allowConstantLoopConditions?: boolean
|
|
7273
|
+
allowConstantLoopConditions?: (boolean | ("always" | "never" | "only-allowed-literals"))
|
|
7217
7274
|
|
|
7218
7275
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
7219
7276
|
|
|
@@ -7531,6 +7588,8 @@ type TypescriptEslintSwitchExhaustivenessCheck = []|[{
|
|
|
7531
7588
|
|
|
7532
7589
|
considerDefaultExhaustiveForUnions?: boolean
|
|
7533
7590
|
|
|
7591
|
+
defaultCaseCommentPattern?: string
|
|
7592
|
+
|
|
7534
7593
|
requireDefaultForNonUnion?: boolean
|
|
7535
7594
|
}]
|
|
7536
7595
|
// ----- @typescript-eslint/triple-slash-reference -----
|
|
@@ -9630,6 +9689,9 @@ type NNoExtraneousImport = []|[{
|
|
|
9630
9689
|
replace: [string, string]
|
|
9631
9690
|
})[]])
|
|
9632
9691
|
resolvePaths?: string[]
|
|
9692
|
+
resolverConfig?: {
|
|
9693
|
+
[k: string]: unknown | undefined
|
|
9694
|
+
}
|
|
9633
9695
|
}]
|
|
9634
9696
|
// ----- n/no-extraneous-require -----
|
|
9635
9697
|
type NNoExtraneousRequire = []|[{
|
|
@@ -9651,6 +9713,9 @@ type NNoExtraneousRequire = []|[{
|
|
|
9651
9713
|
replace: [string, string]
|
|
9652
9714
|
})[]])
|
|
9653
9715
|
resolvePaths?: string[]
|
|
9716
|
+
resolverConfig?: {
|
|
9717
|
+
[k: string]: unknown | undefined
|
|
9718
|
+
}
|
|
9654
9719
|
tryExtensions?: string[]
|
|
9655
9720
|
}]
|
|
9656
9721
|
// ----- n/no-hide-core-modules -----
|
|
@@ -9663,6 +9728,9 @@ type NNoHideCoreModules = []|[{
|
|
|
9663
9728
|
type NNoMissingImport = []|[{
|
|
9664
9729
|
allowModules?: string[]
|
|
9665
9730
|
resolvePaths?: string[]
|
|
9731
|
+
resolverConfig?: {
|
|
9732
|
+
[k: string]: unknown | undefined
|
|
9733
|
+
}
|
|
9666
9734
|
tryExtensions?: string[]
|
|
9667
9735
|
ignoreTypeImport?: boolean
|
|
9668
9736
|
tsconfigPath?: string
|
|
@@ -9673,6 +9741,9 @@ type NNoMissingRequire = []|[{
|
|
|
9673
9741
|
allowModules?: string[]
|
|
9674
9742
|
tryExtensions?: string[]
|
|
9675
9743
|
resolvePaths?: string[]
|
|
9744
|
+
resolverConfig?: {
|
|
9745
|
+
[k: string]: unknown | undefined
|
|
9746
|
+
}
|
|
9676
9747
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
|
|
9677
9748
|
tsconfigPath?: string
|
|
9678
9749
|
}]
|
|
@@ -9740,6 +9811,9 @@ type NNoUnpublishedImport = []|[{
|
|
|
9740
9811
|
replace: [string, string]
|
|
9741
9812
|
})[]])
|
|
9742
9813
|
resolvePaths?: string[]
|
|
9814
|
+
resolverConfig?: {
|
|
9815
|
+
[k: string]: unknown | undefined
|
|
9816
|
+
}
|
|
9743
9817
|
ignoreTypeImport?: boolean
|
|
9744
9818
|
ignorePrivate?: boolean
|
|
9745
9819
|
}]
|
|
@@ -9763,6 +9837,9 @@ type NNoUnpublishedRequire = []|[{
|
|
|
9763
9837
|
replace: [string, string]
|
|
9764
9838
|
})[]])
|
|
9765
9839
|
resolvePaths?: string[]
|
|
9840
|
+
resolverConfig?: {
|
|
9841
|
+
[k: string]: unknown | undefined
|
|
9842
|
+
}
|
|
9766
9843
|
tryExtensions?: string[]
|
|
9767
9844
|
ignorePrivate?: boolean
|
|
9768
9845
|
}]
|
|
@@ -9780,7 +9857,7 @@ type NNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
9780
9857
|
type NNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
9781
9858
|
version?: string
|
|
9782
9859
|
allowExperimental?: boolean
|
|
9783
|
-
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
|
|
9860
|
+
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
|
|
9784
9861
|
}]
|
|
9785
9862
|
// ----- n/prefer-global/buffer -----
|
|
9786
9863
|
type NPreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -10299,30 +10376,136 @@ type PaddingLineBetweenStatements = {
|
|
|
10299
10376
|
next: _PaddingLineBetweenStatementsStatementType
|
|
10300
10377
|
}[]
|
|
10301
10378
|
// ----- perfectionist/sort-array-includes -----
|
|
10302
|
-
type PerfectionistSortArrayIncludes =
|
|
10379
|
+
type PerfectionistSortArrayIncludes = {
|
|
10380
|
+
|
|
10381
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10382
|
+
|
|
10383
|
+
fallbackSort?: {
|
|
10384
|
+
|
|
10385
|
+
order?: ("asc" | "desc")
|
|
10386
|
+
|
|
10387
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10388
|
+
[k: string]: unknown | undefined
|
|
10389
|
+
}
|
|
10390
|
+
|
|
10391
|
+
ignoreCase?: boolean
|
|
10303
10392
|
|
|
10304
|
-
|
|
10393
|
+
alphabet?: string
|
|
10394
|
+
|
|
10395
|
+
locales?: (string | string[])
|
|
10396
|
+
|
|
10397
|
+
order?: ("asc" | "desc")
|
|
10398
|
+
|
|
10399
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10305
10400
|
|
|
10306
10401
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10307
10402
|
|
|
10403
|
+
customGroups?: ({
|
|
10404
|
+
|
|
10405
|
+
groupName?: string
|
|
10406
|
+
|
|
10407
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10408
|
+
|
|
10409
|
+
order?: ("desc" | "asc")
|
|
10410
|
+
|
|
10411
|
+
newlinesInside?: ("always" | "never")
|
|
10412
|
+
anyOf?: {
|
|
10413
|
+
|
|
10414
|
+
selector?: ("literal" | "spread")
|
|
10415
|
+
|
|
10416
|
+
elementNamePattern?: (({
|
|
10417
|
+
pattern?: string
|
|
10418
|
+
flags?: string
|
|
10419
|
+
} | string)[] | ({
|
|
10420
|
+
pattern?: string
|
|
10421
|
+
flags?: string
|
|
10422
|
+
} | string))
|
|
10423
|
+
}[]
|
|
10424
|
+
} | {
|
|
10425
|
+
|
|
10426
|
+
groupName?: string
|
|
10427
|
+
|
|
10428
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10429
|
+
|
|
10430
|
+
order?: ("desc" | "asc")
|
|
10431
|
+
|
|
10432
|
+
newlinesInside?: ("always" | "never")
|
|
10433
|
+
|
|
10434
|
+
selector?: ("literal" | "spread")
|
|
10435
|
+
|
|
10436
|
+
elementNamePattern?: (({
|
|
10437
|
+
pattern?: string
|
|
10438
|
+
flags?: string
|
|
10439
|
+
} | string)[] | ({
|
|
10440
|
+
pattern?: string
|
|
10441
|
+
flags?: string
|
|
10442
|
+
} | string))
|
|
10443
|
+
})[]
|
|
10444
|
+
useConfigurationIf?: {
|
|
10445
|
+
|
|
10446
|
+
allNamesMatchPattern?: (({
|
|
10447
|
+
pattern?: string
|
|
10448
|
+
flags?: string
|
|
10449
|
+
} | string)[] | ({
|
|
10450
|
+
pattern?: string
|
|
10451
|
+
flags?: string
|
|
10452
|
+
} | string))
|
|
10453
|
+
}
|
|
10454
|
+
|
|
10455
|
+
partitionByComment?: (boolean | (({
|
|
10456
|
+
pattern?: string
|
|
10457
|
+
flags?: string
|
|
10458
|
+
} | string)[] | ({
|
|
10459
|
+
pattern?: string
|
|
10460
|
+
flags?: string
|
|
10461
|
+
} | string)) | {
|
|
10462
|
+
block?: (boolean | (({
|
|
10463
|
+
pattern?: string
|
|
10464
|
+
flags?: string
|
|
10465
|
+
} | string)[] | ({
|
|
10466
|
+
pattern?: string
|
|
10467
|
+
flags?: string
|
|
10468
|
+
} | string)))
|
|
10469
|
+
line?: (boolean | (({
|
|
10470
|
+
pattern?: string
|
|
10471
|
+
flags?: string
|
|
10472
|
+
} | string)[] | ({
|
|
10473
|
+
pattern?: string
|
|
10474
|
+
flags?: string
|
|
10475
|
+
} | string)))
|
|
10476
|
+
})
|
|
10477
|
+
|
|
10308
10478
|
partitionByNewLine?: boolean
|
|
10309
10479
|
|
|
10480
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10481
|
+
|
|
10482
|
+
groups?: (string | string[] | {
|
|
10483
|
+
|
|
10484
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10485
|
+
})[]
|
|
10486
|
+
}[]
|
|
10487
|
+
// ----- perfectionist/sort-classes -----
|
|
10488
|
+
type PerfectionistSortClasses = []|[{
|
|
10489
|
+
|
|
10310
10490
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10311
10491
|
|
|
10492
|
+
fallbackSort?: {
|
|
10493
|
+
|
|
10494
|
+
order?: ("asc" | "desc")
|
|
10495
|
+
|
|
10496
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10497
|
+
[k: string]: unknown | undefined
|
|
10498
|
+
}
|
|
10499
|
+
|
|
10312
10500
|
ignoreCase?: boolean
|
|
10313
10501
|
|
|
10502
|
+
alphabet?: string
|
|
10503
|
+
|
|
10314
10504
|
locales?: (string | string[])
|
|
10315
10505
|
|
|
10316
10506
|
order?: ("asc" | "desc")
|
|
10317
10507
|
|
|
10318
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10319
|
-
}]
|
|
10320
|
-
// ----- perfectionist/sort-classes -----
|
|
10321
|
-
type PerfectionistSortClasses = []|[{
|
|
10322
|
-
|
|
10323
|
-
ignoreCallbackDependenciesPatterns?: string[]
|
|
10324
|
-
|
|
10325
|
-
partitionByComment?: (string[] | boolean | string)
|
|
10508
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10326
10509
|
|
|
10327
10510
|
customGroups?: ({
|
|
10328
10511
|
|
|
@@ -10331,17 +10514,37 @@ type PerfectionistSortClasses = []|[{
|
|
|
10331
10514
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10332
10515
|
|
|
10333
10516
|
order?: ("desc" | "asc")
|
|
10517
|
+
|
|
10518
|
+
newlinesInside?: ("always" | "never")
|
|
10334
10519
|
anyOf?: {
|
|
10335
10520
|
|
|
10336
|
-
elementValuePattern?: string
|
|
10337
|
-
|
|
10338
|
-
decoratorNamePattern?: string
|
|
10339
|
-
|
|
10340
10521
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
10341
10522
|
|
|
10342
10523
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
10343
10524
|
|
|
10344
|
-
|
|
10525
|
+
decoratorNamePattern?: (({
|
|
10526
|
+
pattern?: string
|
|
10527
|
+
flags?: string
|
|
10528
|
+
} | string)[] | ({
|
|
10529
|
+
pattern?: string
|
|
10530
|
+
flags?: string
|
|
10531
|
+
} | string))
|
|
10532
|
+
|
|
10533
|
+
elementValuePattern?: (({
|
|
10534
|
+
pattern?: string
|
|
10535
|
+
flags?: string
|
|
10536
|
+
} | string)[] | ({
|
|
10537
|
+
pattern?: string
|
|
10538
|
+
flags?: string
|
|
10539
|
+
} | string))
|
|
10540
|
+
|
|
10541
|
+
elementNamePattern?: (({
|
|
10542
|
+
pattern?: string
|
|
10543
|
+
flags?: string
|
|
10544
|
+
} | string)[] | ({
|
|
10545
|
+
pattern?: string
|
|
10546
|
+
flags?: string
|
|
10547
|
+
} | string))
|
|
10345
10548
|
}[]
|
|
10346
10549
|
} | {
|
|
10347
10550
|
|
|
@@ -10351,37 +10554,99 @@ type PerfectionistSortClasses = []|[{
|
|
|
10351
10554
|
|
|
10352
10555
|
order?: ("desc" | "asc")
|
|
10353
10556
|
|
|
10354
|
-
|
|
10355
|
-
|
|
10356
|
-
decoratorNamePattern?: string
|
|
10557
|
+
newlinesInside?: ("always" | "never")
|
|
10357
10558
|
|
|
10358
10559
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
10359
10560
|
|
|
10360
10561
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
10361
10562
|
|
|
10362
|
-
|
|
10563
|
+
decoratorNamePattern?: (({
|
|
10564
|
+
pattern?: string
|
|
10565
|
+
flags?: string
|
|
10566
|
+
} | string)[] | ({
|
|
10567
|
+
pattern?: string
|
|
10568
|
+
flags?: string
|
|
10569
|
+
} | string))
|
|
10570
|
+
|
|
10571
|
+
elementValuePattern?: (({
|
|
10572
|
+
pattern?: string
|
|
10573
|
+
flags?: string
|
|
10574
|
+
} | string)[] | ({
|
|
10575
|
+
pattern?: string
|
|
10576
|
+
flags?: string
|
|
10577
|
+
} | string))
|
|
10578
|
+
|
|
10579
|
+
elementNamePattern?: (({
|
|
10580
|
+
pattern?: string
|
|
10581
|
+
flags?: string
|
|
10582
|
+
} | string)[] | ({
|
|
10583
|
+
pattern?: string
|
|
10584
|
+
flags?: string
|
|
10585
|
+
} | string))
|
|
10363
10586
|
})[]
|
|
10364
10587
|
|
|
10588
|
+
ignoreCallbackDependenciesPatterns?: (({
|
|
10589
|
+
pattern?: string
|
|
10590
|
+
flags?: string
|
|
10591
|
+
} | string)[] | ({
|
|
10592
|
+
pattern?: string
|
|
10593
|
+
flags?: string
|
|
10594
|
+
} | string))
|
|
10595
|
+
|
|
10596
|
+
partitionByComment?: (boolean | (({
|
|
10597
|
+
pattern?: string
|
|
10598
|
+
flags?: string
|
|
10599
|
+
} | string)[] | ({
|
|
10600
|
+
pattern?: string
|
|
10601
|
+
flags?: string
|
|
10602
|
+
} | string)) | {
|
|
10603
|
+
block?: (boolean | (({
|
|
10604
|
+
pattern?: string
|
|
10605
|
+
flags?: string
|
|
10606
|
+
} | string)[] | ({
|
|
10607
|
+
pattern?: string
|
|
10608
|
+
flags?: string
|
|
10609
|
+
} | string)))
|
|
10610
|
+
line?: (boolean | (({
|
|
10611
|
+
pattern?: string
|
|
10612
|
+
flags?: string
|
|
10613
|
+
} | string)[] | ({
|
|
10614
|
+
pattern?: string
|
|
10615
|
+
flags?: string
|
|
10616
|
+
} | string)))
|
|
10617
|
+
})
|
|
10618
|
+
|
|
10365
10619
|
partitionByNewLine?: boolean
|
|
10366
10620
|
|
|
10621
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10622
|
+
|
|
10623
|
+
groups?: (string | string[] | {
|
|
10624
|
+
|
|
10625
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10626
|
+
})[]
|
|
10627
|
+
}]
|
|
10628
|
+
// ----- perfectionist/sort-decorators -----
|
|
10629
|
+
type PerfectionistSortDecorators = []|[{
|
|
10630
|
+
|
|
10367
10631
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10368
10632
|
|
|
10369
|
-
|
|
10633
|
+
fallbackSort?: {
|
|
10634
|
+
|
|
10635
|
+
order?: ("asc" | "desc")
|
|
10636
|
+
|
|
10637
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10638
|
+
[k: string]: unknown | undefined
|
|
10639
|
+
}
|
|
10370
10640
|
|
|
10371
10641
|
ignoreCase?: boolean
|
|
10372
10642
|
|
|
10373
|
-
|
|
10643
|
+
alphabet?: string
|
|
10374
10644
|
|
|
10375
|
-
|
|
10645
|
+
locales?: (string | string[])
|
|
10376
10646
|
|
|
10377
10647
|
order?: ("asc" | "desc")
|
|
10378
10648
|
|
|
10379
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10380
|
-
}]
|
|
10381
|
-
// ----- perfectionist/sort-decorators -----
|
|
10382
|
-
type PerfectionistSortDecorators = []|[{
|
|
10383
|
-
|
|
10384
|
-
partitionByComment?: (string[] | boolean | string)
|
|
10649
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10385
10650
|
|
|
10386
10651
|
sortOnParameters?: boolean
|
|
10387
10652
|
|
|
@@ -10393,84 +10658,257 @@ type PerfectionistSortDecorators = []|[{
|
|
|
10393
10658
|
|
|
10394
10659
|
sortOnClasses?: boolean
|
|
10395
10660
|
|
|
10396
|
-
|
|
10661
|
+
partitionByComment?: (boolean | (({
|
|
10662
|
+
pattern?: string
|
|
10663
|
+
flags?: string
|
|
10664
|
+
} | string)[] | ({
|
|
10665
|
+
pattern?: string
|
|
10666
|
+
flags?: string
|
|
10667
|
+
} | string)) | {
|
|
10668
|
+
block?: (boolean | (({
|
|
10669
|
+
pattern?: string
|
|
10670
|
+
flags?: string
|
|
10671
|
+
} | string)[] | ({
|
|
10672
|
+
pattern?: string
|
|
10673
|
+
flags?: string
|
|
10674
|
+
} | string)))
|
|
10675
|
+
line?: (boolean | (({
|
|
10676
|
+
pattern?: string
|
|
10677
|
+
flags?: string
|
|
10678
|
+
} | string)[] | ({
|
|
10679
|
+
pattern?: string
|
|
10680
|
+
flags?: string
|
|
10681
|
+
} | string)))
|
|
10682
|
+
})
|
|
10397
10683
|
|
|
10398
10684
|
customGroups?: {
|
|
10399
10685
|
[k: string]: (string | string[]) | undefined
|
|
10400
10686
|
}
|
|
10401
10687
|
|
|
10688
|
+
groups?: (string | string[] | {
|
|
10689
|
+
|
|
10690
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10691
|
+
})[]
|
|
10692
|
+
}]
|
|
10693
|
+
// ----- perfectionist/sort-enums -----
|
|
10694
|
+
type PerfectionistSortEnums = []|[{
|
|
10695
|
+
|
|
10696
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10697
|
+
|
|
10698
|
+
fallbackSort?: {
|
|
10699
|
+
|
|
10700
|
+
order?: ("asc" | "desc")
|
|
10701
|
+
|
|
10702
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10703
|
+
[k: string]: unknown | undefined
|
|
10704
|
+
}
|
|
10705
|
+
|
|
10402
10706
|
ignoreCase?: boolean
|
|
10403
10707
|
|
|
10404
|
-
|
|
10708
|
+
alphabet?: string
|
|
10405
10709
|
|
|
10406
|
-
|
|
10710
|
+
locales?: (string | string[])
|
|
10407
10711
|
|
|
10408
10712
|
order?: ("asc" | "desc")
|
|
10409
10713
|
|
|
10410
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10411
|
-
}]
|
|
10412
|
-
// ----- perfectionist/sort-enums -----
|
|
10413
|
-
type PerfectionistSortEnums = []|[{
|
|
10414
|
-
|
|
10415
|
-
partitionByComment?: (string[] | boolean | string)
|
|
10714
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10416
10715
|
|
|
10417
10716
|
forceNumericSort?: boolean
|
|
10717
|
+
customGroups?: ({
|
|
10718
|
+
[k: string]: (string | string[]) | undefined
|
|
10719
|
+
} | ({
|
|
10720
|
+
|
|
10721
|
+
groupName?: string
|
|
10722
|
+
|
|
10723
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10724
|
+
|
|
10725
|
+
order?: ("desc" | "asc")
|
|
10726
|
+
|
|
10727
|
+
newlinesInside?: ("always" | "never")
|
|
10728
|
+
anyOf?: {
|
|
10729
|
+
|
|
10730
|
+
elementValuePattern?: (({
|
|
10731
|
+
pattern?: string
|
|
10732
|
+
flags?: string
|
|
10733
|
+
} | string)[] | ({
|
|
10734
|
+
pattern?: string
|
|
10735
|
+
flags?: string
|
|
10736
|
+
} | string))
|
|
10737
|
+
|
|
10738
|
+
elementNamePattern?: (({
|
|
10739
|
+
pattern?: string
|
|
10740
|
+
flags?: string
|
|
10741
|
+
} | string)[] | ({
|
|
10742
|
+
pattern?: string
|
|
10743
|
+
flags?: string
|
|
10744
|
+
} | string))
|
|
10745
|
+
}[]
|
|
10746
|
+
} | {
|
|
10747
|
+
|
|
10748
|
+
groupName?: string
|
|
10749
|
+
|
|
10750
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10751
|
+
|
|
10752
|
+
order?: ("desc" | "asc")
|
|
10753
|
+
|
|
10754
|
+
newlinesInside?: ("always" | "never")
|
|
10755
|
+
|
|
10756
|
+
elementValuePattern?: (({
|
|
10757
|
+
pattern?: string
|
|
10758
|
+
flags?: string
|
|
10759
|
+
} | string)[] | ({
|
|
10760
|
+
pattern?: string
|
|
10761
|
+
flags?: string
|
|
10762
|
+
} | string))
|
|
10763
|
+
|
|
10764
|
+
elementNamePattern?: (({
|
|
10765
|
+
pattern?: string
|
|
10766
|
+
flags?: string
|
|
10767
|
+
} | string)[] | ({
|
|
10768
|
+
pattern?: string
|
|
10769
|
+
flags?: string
|
|
10770
|
+
} | string))
|
|
10771
|
+
})[])
|
|
10418
10772
|
|
|
10419
10773
|
sortByValue?: boolean
|
|
10420
10774
|
|
|
10775
|
+
partitionByComment?: (boolean | (({
|
|
10776
|
+
pattern?: string
|
|
10777
|
+
flags?: string
|
|
10778
|
+
} | string)[] | ({
|
|
10779
|
+
pattern?: string
|
|
10780
|
+
flags?: string
|
|
10781
|
+
} | string)) | {
|
|
10782
|
+
block?: (boolean | (({
|
|
10783
|
+
pattern?: string
|
|
10784
|
+
flags?: string
|
|
10785
|
+
} | string)[] | ({
|
|
10786
|
+
pattern?: string
|
|
10787
|
+
flags?: string
|
|
10788
|
+
} | string)))
|
|
10789
|
+
line?: (boolean | (({
|
|
10790
|
+
pattern?: string
|
|
10791
|
+
flags?: string
|
|
10792
|
+
} | string)[] | ({
|
|
10793
|
+
pattern?: string
|
|
10794
|
+
flags?: string
|
|
10795
|
+
} | string)))
|
|
10796
|
+
})
|
|
10797
|
+
|
|
10421
10798
|
partitionByNewLine?: boolean
|
|
10422
10799
|
|
|
10800
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10801
|
+
|
|
10802
|
+
groups?: (string | string[] | {
|
|
10803
|
+
|
|
10804
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10805
|
+
})[]
|
|
10806
|
+
}]
|
|
10807
|
+
// ----- perfectionist/sort-exports -----
|
|
10808
|
+
type PerfectionistSortExports = []|[{
|
|
10809
|
+
|
|
10423
10810
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10424
10811
|
|
|
10812
|
+
fallbackSort?: {
|
|
10813
|
+
|
|
10814
|
+
order?: ("asc" | "desc")
|
|
10815
|
+
|
|
10816
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10817
|
+
[k: string]: unknown | undefined
|
|
10818
|
+
}
|
|
10819
|
+
|
|
10425
10820
|
ignoreCase?: boolean
|
|
10426
10821
|
|
|
10822
|
+
alphabet?: string
|
|
10823
|
+
|
|
10427
10824
|
locales?: (string | string[])
|
|
10428
10825
|
|
|
10429
10826
|
order?: ("asc" | "desc")
|
|
10430
10827
|
|
|
10431
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10432
|
-
}]
|
|
10433
|
-
// ----- perfectionist/sort-exports -----
|
|
10434
|
-
type PerfectionistSortExports = []|[{
|
|
10435
|
-
|
|
10436
|
-
partitionByComment?: (string[] | boolean | string)
|
|
10828
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10437
10829
|
|
|
10438
10830
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10439
10831
|
|
|
10832
|
+
partitionByComment?: (boolean | (({
|
|
10833
|
+
pattern?: string
|
|
10834
|
+
flags?: string
|
|
10835
|
+
} | string)[] | ({
|
|
10836
|
+
pattern?: string
|
|
10837
|
+
flags?: string
|
|
10838
|
+
} | string)) | {
|
|
10839
|
+
block?: (boolean | (({
|
|
10840
|
+
pattern?: string
|
|
10841
|
+
flags?: string
|
|
10842
|
+
} | string)[] | ({
|
|
10843
|
+
pattern?: string
|
|
10844
|
+
flags?: string
|
|
10845
|
+
} | string)))
|
|
10846
|
+
line?: (boolean | (({
|
|
10847
|
+
pattern?: string
|
|
10848
|
+
flags?: string
|
|
10849
|
+
} | string)[] | ({
|
|
10850
|
+
pattern?: string
|
|
10851
|
+
flags?: string
|
|
10852
|
+
} | string)))
|
|
10853
|
+
})
|
|
10854
|
+
|
|
10440
10855
|
partitionByNewLine?: boolean
|
|
10856
|
+
}]
|
|
10857
|
+
// ----- perfectionist/sort-heritage-clauses -----
|
|
10858
|
+
type PerfectionistSortHeritageClauses = []|[{
|
|
10441
10859
|
|
|
10442
10860
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10443
10861
|
|
|
10862
|
+
fallbackSort?: {
|
|
10863
|
+
|
|
10864
|
+
order?: ("asc" | "desc")
|
|
10865
|
+
|
|
10866
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10867
|
+
[k: string]: unknown | undefined
|
|
10868
|
+
}
|
|
10869
|
+
|
|
10444
10870
|
ignoreCase?: boolean
|
|
10445
10871
|
|
|
10872
|
+
alphabet?: string
|
|
10873
|
+
|
|
10446
10874
|
locales?: (string | string[])
|
|
10447
10875
|
|
|
10448
10876
|
order?: ("asc" | "desc")
|
|
10449
10877
|
|
|
10450
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10878
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10879
|
+
|
|
10880
|
+
customGroups?: {
|
|
10881
|
+
[k: string]: (string | string[]) | undefined
|
|
10882
|
+
}
|
|
10883
|
+
|
|
10884
|
+
groups?: (string | string[] | {
|
|
10885
|
+
|
|
10886
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10887
|
+
})[]
|
|
10451
10888
|
}]
|
|
10452
|
-
// ----- perfectionist/sort-
|
|
10453
|
-
type
|
|
10889
|
+
// ----- perfectionist/sort-imports -----
|
|
10890
|
+
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
10891
|
+
type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
10454
10892
|
|
|
10455
10893
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10456
10894
|
|
|
10457
|
-
|
|
10458
|
-
|
|
10895
|
+
fallbackSort?: {
|
|
10896
|
+
|
|
10897
|
+
order?: ("asc" | "desc")
|
|
10898
|
+
|
|
10899
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10900
|
+
[k: string]: unknown | undefined
|
|
10459
10901
|
}
|
|
10460
10902
|
|
|
10461
10903
|
ignoreCase?: boolean
|
|
10462
10904
|
|
|
10463
|
-
|
|
10905
|
+
alphabet?: string
|
|
10464
10906
|
|
|
10465
|
-
|
|
10907
|
+
locales?: (string | string[])
|
|
10466
10908
|
|
|
10467
10909
|
order?: ("asc" | "desc")
|
|
10468
10910
|
|
|
10469
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10470
|
-
}]
|
|
10471
|
-
// ----- perfectionist/sort-imports -----
|
|
10472
|
-
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
10473
|
-
type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
10911
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10474
10912
|
|
|
10475
10913
|
customGroups?: {
|
|
10476
10914
|
|
|
@@ -10483,10 +10921,6 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
10483
10921
|
}
|
|
10484
10922
|
}
|
|
10485
10923
|
|
|
10486
|
-
partitionByComment?: (string[] | boolean | string)
|
|
10487
|
-
|
|
10488
|
-
internalPattern?: string[]
|
|
10489
|
-
|
|
10490
10924
|
maxLineLength?: number
|
|
10491
10925
|
|
|
10492
10926
|
sortSideEffects?: boolean
|
|
@@ -10495,21 +10929,45 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
10495
10929
|
|
|
10496
10930
|
tsconfigRootDir?: string
|
|
10497
10931
|
|
|
10498
|
-
|
|
10932
|
+
partitionByComment?: (boolean | (({
|
|
10933
|
+
pattern?: string
|
|
10934
|
+
flags?: string
|
|
10935
|
+
} | string)[] | ({
|
|
10936
|
+
pattern?: string
|
|
10937
|
+
flags?: string
|
|
10938
|
+
} | string)) | {
|
|
10939
|
+
block?: (boolean | (({
|
|
10940
|
+
pattern?: string
|
|
10941
|
+
flags?: string
|
|
10942
|
+
} | string)[] | ({
|
|
10943
|
+
pattern?: string
|
|
10944
|
+
flags?: string
|
|
10945
|
+
} | string)))
|
|
10946
|
+
line?: (boolean | (({
|
|
10947
|
+
pattern?: string
|
|
10948
|
+
flags?: string
|
|
10949
|
+
} | string)[] | ({
|
|
10950
|
+
pattern?: string
|
|
10951
|
+
flags?: string
|
|
10952
|
+
} | string)))
|
|
10953
|
+
})
|
|
10499
10954
|
|
|
10500
|
-
|
|
10955
|
+
partitionByNewLine?: boolean
|
|
10501
10956
|
|
|
10502
10957
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10503
10958
|
|
|
10504
|
-
|
|
10505
|
-
|
|
10506
|
-
|
|
10507
|
-
|
|
10508
|
-
|
|
10959
|
+
internalPattern?: (({
|
|
10960
|
+
pattern?: string
|
|
10961
|
+
flags?: string
|
|
10962
|
+
} | string)[] | ({
|
|
10963
|
+
pattern?: string
|
|
10964
|
+
flags?: string
|
|
10965
|
+
} | string))
|
|
10509
10966
|
|
|
10510
|
-
|
|
10511
|
-
|
|
10512
|
-
|
|
10967
|
+
groups?: (string | string[] | {
|
|
10968
|
+
|
|
10969
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10970
|
+
})[]
|
|
10513
10971
|
})
|
|
10514
10972
|
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
|
|
10515
10973
|
[k: string]: unknown | undefined
|
|
@@ -10519,11 +10977,27 @@ interface _PerfectionistSortImports_IsLineLength {
|
|
|
10519
10977
|
[k: string]: unknown | undefined
|
|
10520
10978
|
}
|
|
10521
10979
|
// ----- perfectionist/sort-interfaces -----
|
|
10522
|
-
type PerfectionistSortInterfaces =
|
|
10980
|
+
type PerfectionistSortInterfaces = {
|
|
10981
|
+
|
|
10982
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10983
|
+
|
|
10984
|
+
fallbackSort?: {
|
|
10985
|
+
|
|
10986
|
+
order?: ("asc" | "desc")
|
|
10987
|
+
|
|
10988
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10989
|
+
[k: string]: unknown | undefined
|
|
10990
|
+
}
|
|
10991
|
+
|
|
10992
|
+
ignoreCase?: boolean
|
|
10523
10993
|
|
|
10524
|
-
|
|
10994
|
+
alphabet?: string
|
|
10525
10995
|
|
|
10526
|
-
|
|
10996
|
+
locales?: (string | string[])
|
|
10997
|
+
|
|
10998
|
+
order?: ("asc" | "desc")
|
|
10999
|
+
|
|
11000
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10527
11001
|
customGroups?: ({
|
|
10528
11002
|
[k: string]: (string | string[]) | undefined
|
|
10529
11003
|
} | ({
|
|
@@ -10533,13 +11007,21 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
10533
11007
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10534
11008
|
|
|
10535
11009
|
order?: ("desc" | "asc")
|
|
11010
|
+
|
|
11011
|
+
newlinesInside?: ("always" | "never")
|
|
10536
11012
|
anyOf?: {
|
|
10537
11013
|
|
|
10538
11014
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
10539
11015
|
|
|
10540
11016
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
10541
11017
|
|
|
10542
|
-
elementNamePattern?:
|
|
11018
|
+
elementNamePattern?: (({
|
|
11019
|
+
pattern?: string
|
|
11020
|
+
flags?: string
|
|
11021
|
+
} | string)[] | ({
|
|
11022
|
+
pattern?: string
|
|
11023
|
+
flags?: string
|
|
11024
|
+
} | string))
|
|
10543
11025
|
}[]
|
|
10544
11026
|
} | {
|
|
10545
11027
|
|
|
@@ -10549,94 +11031,323 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
10549
11031
|
|
|
10550
11032
|
order?: ("desc" | "asc")
|
|
10551
11033
|
|
|
11034
|
+
newlinesInside?: ("always" | "never")
|
|
11035
|
+
|
|
10552
11036
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
10553
11037
|
|
|
10554
11038
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
10555
11039
|
|
|
10556
|
-
elementNamePattern?:
|
|
11040
|
+
elementNamePattern?: (({
|
|
11041
|
+
pattern?: string
|
|
11042
|
+
flags?: string
|
|
11043
|
+
} | string)[] | ({
|
|
11044
|
+
pattern?: string
|
|
11045
|
+
flags?: string
|
|
11046
|
+
} | string))
|
|
10557
11047
|
})[])
|
|
11048
|
+
useConfigurationIf?: {
|
|
11049
|
+
|
|
11050
|
+
allNamesMatchPattern?: (({
|
|
11051
|
+
pattern?: string
|
|
11052
|
+
flags?: string
|
|
11053
|
+
} | string)[] | ({
|
|
11054
|
+
pattern?: string
|
|
11055
|
+
flags?: string
|
|
11056
|
+
} | string))
|
|
11057
|
+
|
|
11058
|
+
declarationMatchesPattern?: (({
|
|
11059
|
+
pattern?: string
|
|
11060
|
+
flags?: string
|
|
11061
|
+
} | string)[] | ({
|
|
11062
|
+
pattern?: string
|
|
11063
|
+
flags?: string
|
|
11064
|
+
} | string))
|
|
11065
|
+
}
|
|
10558
11066
|
|
|
10559
11067
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
10560
11068
|
|
|
11069
|
+
partitionByComment?: (boolean | (({
|
|
11070
|
+
pattern?: string
|
|
11071
|
+
flags?: string
|
|
11072
|
+
} | string)[] | ({
|
|
11073
|
+
pattern?: string
|
|
11074
|
+
flags?: string
|
|
11075
|
+
} | string)) | {
|
|
11076
|
+
block?: (boolean | (({
|
|
11077
|
+
pattern?: string
|
|
11078
|
+
flags?: string
|
|
11079
|
+
} | string)[] | ({
|
|
11080
|
+
pattern?: string
|
|
11081
|
+
flags?: string
|
|
11082
|
+
} | string)))
|
|
11083
|
+
line?: (boolean | (({
|
|
11084
|
+
pattern?: string
|
|
11085
|
+
flags?: string
|
|
11086
|
+
} | string)[] | ({
|
|
11087
|
+
pattern?: string
|
|
11088
|
+
flags?: string
|
|
11089
|
+
} | string)))
|
|
11090
|
+
})
|
|
11091
|
+
|
|
10561
11092
|
partitionByNewLine?: boolean
|
|
10562
11093
|
|
|
11094
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11095
|
+
|
|
11096
|
+
ignorePattern?: (({
|
|
11097
|
+
pattern?: string
|
|
11098
|
+
flags?: string
|
|
11099
|
+
} | string)[] | ({
|
|
11100
|
+
pattern?: string
|
|
11101
|
+
flags?: string
|
|
11102
|
+
} | string))
|
|
11103
|
+
|
|
11104
|
+
groups?: (string | string[] | {
|
|
11105
|
+
|
|
11106
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11107
|
+
})[]
|
|
11108
|
+
}[]
|
|
11109
|
+
// ----- perfectionist/sort-intersection-types -----
|
|
11110
|
+
type PerfectionistSortIntersectionTypes = []|[{
|
|
11111
|
+
|
|
10563
11112
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10564
11113
|
|
|
10565
|
-
|
|
11114
|
+
fallbackSort?: {
|
|
11115
|
+
|
|
11116
|
+
order?: ("asc" | "desc")
|
|
11117
|
+
|
|
11118
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11119
|
+
[k: string]: unknown | undefined
|
|
11120
|
+
}
|
|
10566
11121
|
|
|
10567
11122
|
ignoreCase?: boolean
|
|
10568
11123
|
|
|
10569
|
-
|
|
11124
|
+
alphabet?: string
|
|
10570
11125
|
|
|
10571
|
-
|
|
11126
|
+
locales?: (string | string[])
|
|
10572
11127
|
|
|
10573
11128
|
order?: ("asc" | "desc")
|
|
10574
11129
|
|
|
10575
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10576
|
-
|
|
10577
|
-
|
|
10578
|
-
|
|
10579
|
-
|
|
10580
|
-
|
|
11130
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11131
|
+
|
|
11132
|
+
partitionByComment?: (boolean | (({
|
|
11133
|
+
pattern?: string
|
|
11134
|
+
flags?: string
|
|
11135
|
+
} | string)[] | ({
|
|
11136
|
+
pattern?: string
|
|
11137
|
+
flags?: string
|
|
11138
|
+
} | string)) | {
|
|
11139
|
+
block?: (boolean | (({
|
|
11140
|
+
pattern?: string
|
|
11141
|
+
flags?: string
|
|
11142
|
+
} | string)[] | ({
|
|
11143
|
+
pattern?: string
|
|
11144
|
+
flags?: string
|
|
11145
|
+
} | string)))
|
|
11146
|
+
line?: (boolean | (({
|
|
11147
|
+
pattern?: string
|
|
11148
|
+
flags?: string
|
|
11149
|
+
} | string)[] | ({
|
|
11150
|
+
pattern?: string
|
|
11151
|
+
flags?: string
|
|
11152
|
+
} | string)))
|
|
11153
|
+
})
|
|
10581
11154
|
|
|
10582
11155
|
partitionByNewLine?: boolean
|
|
10583
11156
|
|
|
11157
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11158
|
+
|
|
11159
|
+
groups?: (string | string[] | {
|
|
11160
|
+
|
|
11161
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11162
|
+
})[]
|
|
11163
|
+
}]
|
|
11164
|
+
// ----- perfectionist/sort-jsx-props -----
|
|
11165
|
+
type PerfectionistSortJsxProps = {
|
|
11166
|
+
|
|
10584
11167
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10585
11168
|
|
|
10586
|
-
|
|
11169
|
+
fallbackSort?: {
|
|
11170
|
+
|
|
11171
|
+
order?: ("asc" | "desc")
|
|
11172
|
+
|
|
11173
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11174
|
+
[k: string]: unknown | undefined
|
|
11175
|
+
}
|
|
10587
11176
|
|
|
10588
11177
|
ignoreCase?: boolean
|
|
10589
11178
|
|
|
10590
|
-
|
|
11179
|
+
alphabet?: string
|
|
10591
11180
|
|
|
10592
|
-
|
|
11181
|
+
locales?: (string | string[])
|
|
10593
11182
|
|
|
10594
11183
|
order?: ("asc" | "desc")
|
|
10595
11184
|
|
|
10596
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10597
|
-
|
|
10598
|
-
|
|
10599
|
-
|
|
11185
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11186
|
+
useConfigurationIf?: {
|
|
11187
|
+
|
|
11188
|
+
allNamesMatchPattern?: (({
|
|
11189
|
+
pattern?: string
|
|
11190
|
+
flags?: string
|
|
11191
|
+
} | string)[] | ({
|
|
11192
|
+
pattern?: string
|
|
11193
|
+
flags?: string
|
|
11194
|
+
} | string))
|
|
11195
|
+
|
|
11196
|
+
tagMatchesPattern?: (({
|
|
11197
|
+
pattern?: string
|
|
11198
|
+
flags?: string
|
|
11199
|
+
} | string)[] | ({
|
|
11200
|
+
pattern?: string
|
|
11201
|
+
flags?: string
|
|
11202
|
+
} | string))
|
|
11203
|
+
}
|
|
10600
11204
|
|
|
10601
|
-
|
|
11205
|
+
partitionByNewLine?: boolean
|
|
10602
11206
|
|
|
10603
|
-
|
|
11207
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10604
11208
|
|
|
10605
11209
|
customGroups?: {
|
|
10606
11210
|
[k: string]: (string | string[]) | undefined
|
|
10607
11211
|
}
|
|
10608
11212
|
|
|
11213
|
+
ignorePattern?: (({
|
|
11214
|
+
pattern?: string
|
|
11215
|
+
flags?: string
|
|
11216
|
+
} | string)[] | ({
|
|
11217
|
+
pattern?: string
|
|
11218
|
+
flags?: string
|
|
11219
|
+
} | string))
|
|
11220
|
+
|
|
11221
|
+
groups?: (string | string[] | {
|
|
11222
|
+
|
|
11223
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11224
|
+
})[]
|
|
11225
|
+
}[]
|
|
11226
|
+
// ----- perfectionist/sort-maps -----
|
|
11227
|
+
type PerfectionistSortMaps = {
|
|
11228
|
+
|
|
11229
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11230
|
+
|
|
11231
|
+
fallbackSort?: {
|
|
11232
|
+
|
|
11233
|
+
order?: ("asc" | "desc")
|
|
11234
|
+
|
|
11235
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11236
|
+
[k: string]: unknown | undefined
|
|
11237
|
+
}
|
|
11238
|
+
|
|
10609
11239
|
ignoreCase?: boolean
|
|
10610
11240
|
|
|
10611
|
-
|
|
11241
|
+
alphabet?: string
|
|
10612
11242
|
|
|
10613
|
-
|
|
11243
|
+
locales?: (string | string[])
|
|
10614
11244
|
|
|
10615
11245
|
order?: ("asc" | "desc")
|
|
10616
11246
|
|
|
10617
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10618
|
-
}]
|
|
10619
|
-
// ----- perfectionist/sort-maps -----
|
|
10620
|
-
type PerfectionistSortMaps = []|[{
|
|
11247
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10621
11248
|
|
|
10622
|
-
|
|
11249
|
+
customGroups?: ({
|
|
11250
|
+
|
|
11251
|
+
groupName?: string
|
|
11252
|
+
|
|
11253
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
11254
|
+
|
|
11255
|
+
order?: ("desc" | "asc")
|
|
11256
|
+
|
|
11257
|
+
newlinesInside?: ("always" | "never")
|
|
11258
|
+
anyOf?: {
|
|
11259
|
+
|
|
11260
|
+
elementNamePattern?: (({
|
|
11261
|
+
pattern?: string
|
|
11262
|
+
flags?: string
|
|
11263
|
+
} | string)[] | ({
|
|
11264
|
+
pattern?: string
|
|
11265
|
+
flags?: string
|
|
11266
|
+
} | string))
|
|
11267
|
+
}[]
|
|
11268
|
+
} | {
|
|
11269
|
+
|
|
11270
|
+
groupName?: string
|
|
11271
|
+
|
|
11272
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
11273
|
+
|
|
11274
|
+
order?: ("desc" | "asc")
|
|
11275
|
+
|
|
11276
|
+
newlinesInside?: ("always" | "never")
|
|
11277
|
+
|
|
11278
|
+
elementNamePattern?: (({
|
|
11279
|
+
pattern?: string
|
|
11280
|
+
flags?: string
|
|
11281
|
+
} | string)[] | ({
|
|
11282
|
+
pattern?: string
|
|
11283
|
+
flags?: string
|
|
11284
|
+
} | string))
|
|
11285
|
+
})[]
|
|
11286
|
+
useConfigurationIf?: {
|
|
11287
|
+
|
|
11288
|
+
allNamesMatchPattern?: (({
|
|
11289
|
+
pattern?: string
|
|
11290
|
+
flags?: string
|
|
11291
|
+
} | string)[] | ({
|
|
11292
|
+
pattern?: string
|
|
11293
|
+
flags?: string
|
|
11294
|
+
} | string))
|
|
11295
|
+
}
|
|
11296
|
+
|
|
11297
|
+
partitionByComment?: (boolean | (({
|
|
11298
|
+
pattern?: string
|
|
11299
|
+
flags?: string
|
|
11300
|
+
} | string)[] | ({
|
|
11301
|
+
pattern?: string
|
|
11302
|
+
flags?: string
|
|
11303
|
+
} | string)) | {
|
|
11304
|
+
block?: (boolean | (({
|
|
11305
|
+
pattern?: string
|
|
11306
|
+
flags?: string
|
|
11307
|
+
} | string)[] | ({
|
|
11308
|
+
pattern?: string
|
|
11309
|
+
flags?: string
|
|
11310
|
+
} | string)))
|
|
11311
|
+
line?: (boolean | (({
|
|
11312
|
+
pattern?: string
|
|
11313
|
+
flags?: string
|
|
11314
|
+
} | string)[] | ({
|
|
11315
|
+
pattern?: string
|
|
11316
|
+
flags?: string
|
|
11317
|
+
} | string)))
|
|
11318
|
+
})
|
|
10623
11319
|
|
|
10624
11320
|
partitionByNewLine?: boolean
|
|
10625
11321
|
|
|
11322
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11323
|
+
|
|
11324
|
+
groups?: (string | string[] | {
|
|
11325
|
+
|
|
11326
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11327
|
+
})[]
|
|
11328
|
+
}[]
|
|
11329
|
+
// ----- perfectionist/sort-modules -----
|
|
11330
|
+
type PerfectionistSortModules = []|[{
|
|
11331
|
+
|
|
10626
11332
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10627
11333
|
|
|
11334
|
+
fallbackSort?: {
|
|
11335
|
+
|
|
11336
|
+
order?: ("asc" | "desc")
|
|
11337
|
+
|
|
11338
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11339
|
+
[k: string]: unknown | undefined
|
|
11340
|
+
}
|
|
11341
|
+
|
|
10628
11342
|
ignoreCase?: boolean
|
|
10629
11343
|
|
|
11344
|
+
alphabet?: string
|
|
11345
|
+
|
|
10630
11346
|
locales?: (string | string[])
|
|
10631
11347
|
|
|
10632
11348
|
order?: ("asc" | "desc")
|
|
10633
11349
|
|
|
10634
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10635
|
-
}]
|
|
10636
|
-
// ----- perfectionist/sort-modules -----
|
|
10637
|
-
type PerfectionistSortModules = []|[{
|
|
10638
|
-
|
|
10639
|
-
partitionByComment?: (string[] | boolean | string)
|
|
11350
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10640
11351
|
|
|
10641
11352
|
customGroups?: ({
|
|
10642
11353
|
|
|
@@ -10645,15 +11356,29 @@ type PerfectionistSortModules = []|[{
|
|
|
10645
11356
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10646
11357
|
|
|
10647
11358
|
order?: ("desc" | "asc")
|
|
11359
|
+
|
|
11360
|
+
newlinesInside?: ("always" | "never")
|
|
10648
11361
|
anyOf?: {
|
|
10649
11362
|
|
|
10650
|
-
decoratorNamePattern?: string
|
|
10651
|
-
|
|
10652
11363
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
10653
11364
|
|
|
10654
11365
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
10655
11366
|
|
|
10656
|
-
|
|
11367
|
+
decoratorNamePattern?: (({
|
|
11368
|
+
pattern?: string
|
|
11369
|
+
flags?: string
|
|
11370
|
+
} | string)[] | ({
|
|
11371
|
+
pattern?: string
|
|
11372
|
+
flags?: string
|
|
11373
|
+
} | string))
|
|
11374
|
+
|
|
11375
|
+
elementNamePattern?: (({
|
|
11376
|
+
pattern?: string
|
|
11377
|
+
flags?: string
|
|
11378
|
+
} | string)[] | ({
|
|
11379
|
+
pattern?: string
|
|
11380
|
+
flags?: string
|
|
11381
|
+
} | string))
|
|
10657
11382
|
}[]
|
|
10658
11383
|
} | {
|
|
10659
11384
|
|
|
@@ -10663,77 +11388,187 @@ type PerfectionistSortModules = []|[{
|
|
|
10663
11388
|
|
|
10664
11389
|
order?: ("desc" | "asc")
|
|
10665
11390
|
|
|
10666
|
-
|
|
11391
|
+
newlinesInside?: ("always" | "never")
|
|
10667
11392
|
|
|
10668
11393
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
10669
11394
|
|
|
10670
11395
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
10671
11396
|
|
|
10672
|
-
|
|
11397
|
+
decoratorNamePattern?: (({
|
|
11398
|
+
pattern?: string
|
|
11399
|
+
flags?: string
|
|
11400
|
+
} | string)[] | ({
|
|
11401
|
+
pattern?: string
|
|
11402
|
+
flags?: string
|
|
11403
|
+
} | string))
|
|
11404
|
+
|
|
11405
|
+
elementNamePattern?: (({
|
|
11406
|
+
pattern?: string
|
|
11407
|
+
flags?: string
|
|
11408
|
+
} | string)[] | ({
|
|
11409
|
+
pattern?: string
|
|
11410
|
+
flags?: string
|
|
11411
|
+
} | string))
|
|
10673
11412
|
})[]
|
|
10674
11413
|
|
|
11414
|
+
partitionByComment?: (boolean | (({
|
|
11415
|
+
pattern?: string
|
|
11416
|
+
flags?: string
|
|
11417
|
+
} | string)[] | ({
|
|
11418
|
+
pattern?: string
|
|
11419
|
+
flags?: string
|
|
11420
|
+
} | string)) | {
|
|
11421
|
+
block?: (boolean | (({
|
|
11422
|
+
pattern?: string
|
|
11423
|
+
flags?: string
|
|
11424
|
+
} | string)[] | ({
|
|
11425
|
+
pattern?: string
|
|
11426
|
+
flags?: string
|
|
11427
|
+
} | string)))
|
|
11428
|
+
line?: (boolean | (({
|
|
11429
|
+
pattern?: string
|
|
11430
|
+
flags?: string
|
|
11431
|
+
} | string)[] | ({
|
|
11432
|
+
pattern?: string
|
|
11433
|
+
flags?: string
|
|
11434
|
+
} | string)))
|
|
11435
|
+
})
|
|
11436
|
+
|
|
10675
11437
|
partitionByNewLine?: boolean
|
|
10676
11438
|
|
|
11439
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11440
|
+
|
|
11441
|
+
groups?: (string | string[] | {
|
|
11442
|
+
|
|
11443
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11444
|
+
})[]
|
|
11445
|
+
}]
|
|
11446
|
+
// ----- perfectionist/sort-named-exports -----
|
|
11447
|
+
type PerfectionistSortNamedExports = []|[{
|
|
11448
|
+
|
|
10677
11449
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10678
11450
|
|
|
10679
|
-
|
|
11451
|
+
fallbackSort?: {
|
|
11452
|
+
|
|
11453
|
+
order?: ("asc" | "desc")
|
|
11454
|
+
|
|
11455
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11456
|
+
[k: string]: unknown | undefined
|
|
11457
|
+
}
|
|
10680
11458
|
|
|
10681
11459
|
ignoreCase?: boolean
|
|
10682
11460
|
|
|
10683
|
-
|
|
11461
|
+
alphabet?: string
|
|
10684
11462
|
|
|
10685
|
-
|
|
11463
|
+
locales?: (string | string[])
|
|
10686
11464
|
|
|
10687
11465
|
order?: ("asc" | "desc")
|
|
10688
11466
|
|
|
10689
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10690
|
-
}]
|
|
10691
|
-
// ----- perfectionist/sort-named-exports -----
|
|
10692
|
-
type PerfectionistSortNamedExports = []|[{
|
|
10693
|
-
|
|
10694
|
-
partitionByComment?: (string[] | boolean | string)
|
|
11467
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10695
11468
|
|
|
10696
11469
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10697
11470
|
|
|
11471
|
+
ignoreAlias?: boolean
|
|
11472
|
+
|
|
11473
|
+
partitionByComment?: (boolean | (({
|
|
11474
|
+
pattern?: string
|
|
11475
|
+
flags?: string
|
|
11476
|
+
} | string)[] | ({
|
|
11477
|
+
pattern?: string
|
|
11478
|
+
flags?: string
|
|
11479
|
+
} | string)) | {
|
|
11480
|
+
block?: (boolean | (({
|
|
11481
|
+
pattern?: string
|
|
11482
|
+
flags?: string
|
|
11483
|
+
} | string)[] | ({
|
|
11484
|
+
pattern?: string
|
|
11485
|
+
flags?: string
|
|
11486
|
+
} | string)))
|
|
11487
|
+
line?: (boolean | (({
|
|
11488
|
+
pattern?: string
|
|
11489
|
+
flags?: string
|
|
11490
|
+
} | string)[] | ({
|
|
11491
|
+
pattern?: string
|
|
11492
|
+
flags?: string
|
|
11493
|
+
} | string)))
|
|
11494
|
+
})
|
|
11495
|
+
|
|
10698
11496
|
partitionByNewLine?: boolean
|
|
11497
|
+
}]
|
|
11498
|
+
// ----- perfectionist/sort-named-imports -----
|
|
11499
|
+
type PerfectionistSortNamedImports = []|[{
|
|
10699
11500
|
|
|
10700
11501
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10701
11502
|
|
|
11503
|
+
fallbackSort?: {
|
|
11504
|
+
|
|
11505
|
+
order?: ("asc" | "desc")
|
|
11506
|
+
|
|
11507
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11508
|
+
[k: string]: unknown | undefined
|
|
11509
|
+
}
|
|
11510
|
+
|
|
10702
11511
|
ignoreCase?: boolean
|
|
10703
11512
|
|
|
11513
|
+
alphabet?: string
|
|
11514
|
+
|
|
10704
11515
|
locales?: (string | string[])
|
|
10705
11516
|
|
|
10706
11517
|
order?: ("asc" | "desc")
|
|
10707
11518
|
|
|
10708
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10709
|
-
}]
|
|
10710
|
-
// ----- perfectionist/sort-named-imports -----
|
|
10711
|
-
type PerfectionistSortNamedImports = []|[{
|
|
10712
|
-
|
|
10713
|
-
partitionByComment?: (string[] | boolean | string)
|
|
11519
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10714
11520
|
|
|
10715
11521
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10716
11522
|
|
|
10717
11523
|
ignoreAlias?: boolean
|
|
10718
11524
|
|
|
11525
|
+
partitionByComment?: (boolean | (({
|
|
11526
|
+
pattern?: string
|
|
11527
|
+
flags?: string
|
|
11528
|
+
} | string)[] | ({
|
|
11529
|
+
pattern?: string
|
|
11530
|
+
flags?: string
|
|
11531
|
+
} | string)) | {
|
|
11532
|
+
block?: (boolean | (({
|
|
11533
|
+
pattern?: string
|
|
11534
|
+
flags?: string
|
|
11535
|
+
} | string)[] | ({
|
|
11536
|
+
pattern?: string
|
|
11537
|
+
flags?: string
|
|
11538
|
+
} | string)))
|
|
11539
|
+
line?: (boolean | (({
|
|
11540
|
+
pattern?: string
|
|
11541
|
+
flags?: string
|
|
11542
|
+
} | string)[] | ({
|
|
11543
|
+
pattern?: string
|
|
11544
|
+
flags?: string
|
|
11545
|
+
} | string)))
|
|
11546
|
+
})
|
|
11547
|
+
|
|
10719
11548
|
partitionByNewLine?: boolean
|
|
11549
|
+
}]
|
|
11550
|
+
// ----- perfectionist/sort-object-types -----
|
|
11551
|
+
type PerfectionistSortObjectTypes = {
|
|
10720
11552
|
|
|
10721
11553
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10722
11554
|
|
|
11555
|
+
fallbackSort?: {
|
|
11556
|
+
|
|
11557
|
+
order?: ("asc" | "desc")
|
|
11558
|
+
|
|
11559
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11560
|
+
[k: string]: unknown | undefined
|
|
11561
|
+
}
|
|
11562
|
+
|
|
10723
11563
|
ignoreCase?: boolean
|
|
10724
11564
|
|
|
11565
|
+
alphabet?: string
|
|
11566
|
+
|
|
10725
11567
|
locales?: (string | string[])
|
|
10726
11568
|
|
|
10727
11569
|
order?: ("asc" | "desc")
|
|
10728
11570
|
|
|
10729
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10730
|
-
}]
|
|
10731
|
-
// ----- perfectionist/sort-object-types -----
|
|
10732
|
-
type PerfectionistSortObjectTypes = []|[{
|
|
10733
|
-
|
|
10734
|
-
ignorePattern?: string[]
|
|
10735
|
-
|
|
10736
|
-
partitionByComment?: (string[] | boolean | string)
|
|
11571
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10737
11572
|
customGroups?: ({
|
|
10738
11573
|
[k: string]: (string | string[]) | undefined
|
|
10739
11574
|
} | ({
|
|
@@ -10743,13 +11578,21 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
10743
11578
|
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10744
11579
|
|
|
10745
11580
|
order?: ("desc" | "asc")
|
|
11581
|
+
|
|
11582
|
+
newlinesInside?: ("always" | "never")
|
|
10746
11583
|
anyOf?: {
|
|
10747
11584
|
|
|
10748
11585
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
10749
11586
|
|
|
10750
11587
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
10751
11588
|
|
|
10752
|
-
elementNamePattern?:
|
|
11589
|
+
elementNamePattern?: (({
|
|
11590
|
+
pattern?: string
|
|
11591
|
+
flags?: string
|
|
11592
|
+
} | string)[] | ({
|
|
11593
|
+
pattern?: string
|
|
11594
|
+
flags?: string
|
|
11595
|
+
} | string))
|
|
10753
11596
|
}[]
|
|
10754
11597
|
} | {
|
|
10755
11598
|
|
|
@@ -10759,42 +11602,189 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
10759
11602
|
|
|
10760
11603
|
order?: ("desc" | "asc")
|
|
10761
11604
|
|
|
11605
|
+
newlinesInside?: ("always" | "never")
|
|
11606
|
+
|
|
10762
11607
|
modifiers?: ("optional" | "required" | "multiline")[]
|
|
10763
11608
|
|
|
10764
11609
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
10765
11610
|
|
|
10766
|
-
elementNamePattern?:
|
|
11611
|
+
elementNamePattern?: (({
|
|
11612
|
+
pattern?: string
|
|
11613
|
+
flags?: string
|
|
11614
|
+
} | string)[] | ({
|
|
11615
|
+
pattern?: string
|
|
11616
|
+
flags?: string
|
|
11617
|
+
} | string))
|
|
10767
11618
|
})[])
|
|
11619
|
+
useConfigurationIf?: {
|
|
11620
|
+
|
|
11621
|
+
allNamesMatchPattern?: (({
|
|
11622
|
+
pattern?: string
|
|
11623
|
+
flags?: string
|
|
11624
|
+
} | string)[] | ({
|
|
11625
|
+
pattern?: string
|
|
11626
|
+
flags?: string
|
|
11627
|
+
} | string))
|
|
11628
|
+
|
|
11629
|
+
declarationMatchesPattern?: (({
|
|
11630
|
+
pattern?: string
|
|
11631
|
+
flags?: string
|
|
11632
|
+
} | string)[] | ({
|
|
11633
|
+
pattern?: string
|
|
11634
|
+
flags?: string
|
|
11635
|
+
} | string))
|
|
11636
|
+
}
|
|
10768
11637
|
|
|
10769
11638
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
10770
11639
|
|
|
11640
|
+
partitionByComment?: (boolean | (({
|
|
11641
|
+
pattern?: string
|
|
11642
|
+
flags?: string
|
|
11643
|
+
} | string)[] | ({
|
|
11644
|
+
pattern?: string
|
|
11645
|
+
flags?: string
|
|
11646
|
+
} | string)) | {
|
|
11647
|
+
block?: (boolean | (({
|
|
11648
|
+
pattern?: string
|
|
11649
|
+
flags?: string
|
|
11650
|
+
} | string)[] | ({
|
|
11651
|
+
pattern?: string
|
|
11652
|
+
flags?: string
|
|
11653
|
+
} | string)))
|
|
11654
|
+
line?: (boolean | (({
|
|
11655
|
+
pattern?: string
|
|
11656
|
+
flags?: string
|
|
11657
|
+
} | string)[] | ({
|
|
11658
|
+
pattern?: string
|
|
11659
|
+
flags?: string
|
|
11660
|
+
} | string)))
|
|
11661
|
+
})
|
|
11662
|
+
|
|
10771
11663
|
partitionByNewLine?: boolean
|
|
10772
11664
|
|
|
11665
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11666
|
+
|
|
11667
|
+
ignorePattern?: (({
|
|
11668
|
+
pattern?: string
|
|
11669
|
+
flags?: string
|
|
11670
|
+
} | string)[] | ({
|
|
11671
|
+
pattern?: string
|
|
11672
|
+
flags?: string
|
|
11673
|
+
} | string))
|
|
11674
|
+
|
|
11675
|
+
groups?: (string | string[] | {
|
|
11676
|
+
|
|
11677
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11678
|
+
})[]
|
|
11679
|
+
}[]
|
|
11680
|
+
// ----- perfectionist/sort-objects -----
|
|
11681
|
+
type PerfectionistSortObjects = {
|
|
11682
|
+
|
|
10773
11683
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10774
11684
|
|
|
10775
|
-
|
|
11685
|
+
fallbackSort?: {
|
|
11686
|
+
|
|
11687
|
+
order?: ("asc" | "desc")
|
|
11688
|
+
|
|
11689
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11690
|
+
[k: string]: unknown | undefined
|
|
11691
|
+
}
|
|
10776
11692
|
|
|
10777
11693
|
ignoreCase?: boolean
|
|
10778
11694
|
|
|
10779
|
-
|
|
11695
|
+
alphabet?: string
|
|
10780
11696
|
|
|
10781
|
-
|
|
11697
|
+
locales?: (string | string[])
|
|
10782
11698
|
|
|
10783
11699
|
order?: ("asc" | "desc")
|
|
10784
11700
|
|
|
10785
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10786
|
-
}]
|
|
10787
|
-
// ----- perfectionist/sort-objects -----
|
|
10788
|
-
type PerfectionistSortObjects = []|[{
|
|
11701
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10789
11702
|
|
|
10790
11703
|
destructuredObjects?: (boolean | {
|
|
10791
11704
|
|
|
10792
11705
|
groups?: boolean
|
|
10793
11706
|
})
|
|
10794
|
-
|
|
10795
|
-
|
|
10796
|
-
|
|
10797
|
-
|
|
11707
|
+
customGroups?: ({
|
|
11708
|
+
[k: string]: (string | string[]) | undefined
|
|
11709
|
+
} | ({
|
|
11710
|
+
|
|
11711
|
+
groupName?: string
|
|
11712
|
+
|
|
11713
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
11714
|
+
|
|
11715
|
+
order?: ("desc" | "asc")
|
|
11716
|
+
|
|
11717
|
+
newlinesInside?: ("always" | "never")
|
|
11718
|
+
anyOf?: {
|
|
11719
|
+
|
|
11720
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
11721
|
+
|
|
11722
|
+
selector?: ("member" | "method" | "multiline" | "property")
|
|
11723
|
+
|
|
11724
|
+
elementValuePattern?: (({
|
|
11725
|
+
pattern?: string
|
|
11726
|
+
flags?: string
|
|
11727
|
+
} | string)[] | ({
|
|
11728
|
+
pattern?: string
|
|
11729
|
+
flags?: string
|
|
11730
|
+
} | string))
|
|
11731
|
+
|
|
11732
|
+
elementNamePattern?: (({
|
|
11733
|
+
pattern?: string
|
|
11734
|
+
flags?: string
|
|
11735
|
+
} | string)[] | ({
|
|
11736
|
+
pattern?: string
|
|
11737
|
+
flags?: string
|
|
11738
|
+
} | string))
|
|
11739
|
+
}[]
|
|
11740
|
+
} | {
|
|
11741
|
+
|
|
11742
|
+
groupName?: string
|
|
11743
|
+
|
|
11744
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
11745
|
+
|
|
11746
|
+
order?: ("desc" | "asc")
|
|
11747
|
+
|
|
11748
|
+
newlinesInside?: ("always" | "never")
|
|
11749
|
+
|
|
11750
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
11751
|
+
|
|
11752
|
+
selector?: ("member" | "method" | "multiline" | "property")
|
|
11753
|
+
|
|
11754
|
+
elementValuePattern?: (({
|
|
11755
|
+
pattern?: string
|
|
11756
|
+
flags?: string
|
|
11757
|
+
} | string)[] | ({
|
|
11758
|
+
pattern?: string
|
|
11759
|
+
flags?: string
|
|
11760
|
+
} | string))
|
|
11761
|
+
|
|
11762
|
+
elementNamePattern?: (({
|
|
11763
|
+
pattern?: string
|
|
11764
|
+
flags?: string
|
|
11765
|
+
} | string)[] | ({
|
|
11766
|
+
pattern?: string
|
|
11767
|
+
flags?: string
|
|
11768
|
+
} | string))
|
|
11769
|
+
})[])
|
|
11770
|
+
useConfigurationIf?: {
|
|
11771
|
+
|
|
11772
|
+
allNamesMatchPattern?: (({
|
|
11773
|
+
pattern?: string
|
|
11774
|
+
flags?: string
|
|
11775
|
+
} | string)[] | ({
|
|
11776
|
+
pattern?: string
|
|
11777
|
+
flags?: string
|
|
11778
|
+
} | string))
|
|
11779
|
+
|
|
11780
|
+
callingFunctionNamePattern?: (({
|
|
11781
|
+
pattern?: string
|
|
11782
|
+
flags?: string
|
|
11783
|
+
} | string)[] | ({
|
|
11784
|
+
pattern?: string
|
|
11785
|
+
flags?: string
|
|
11786
|
+
} | string))
|
|
11787
|
+
}
|
|
10798
11788
|
|
|
10799
11789
|
destructureOnly?: boolean
|
|
10800
11790
|
|
|
@@ -10802,95 +11792,280 @@ type PerfectionistSortObjects = []|[{
|
|
|
10802
11792
|
|
|
10803
11793
|
styledComponents?: boolean
|
|
10804
11794
|
|
|
10805
|
-
|
|
11795
|
+
partitionByComment?: (boolean | (({
|
|
11796
|
+
pattern?: string
|
|
11797
|
+
flags?: string
|
|
11798
|
+
} | string)[] | ({
|
|
11799
|
+
pattern?: string
|
|
11800
|
+
flags?: string
|
|
11801
|
+
} | string)) | {
|
|
11802
|
+
block?: (boolean | (({
|
|
11803
|
+
pattern?: string
|
|
11804
|
+
flags?: string
|
|
11805
|
+
} | string)[] | ({
|
|
11806
|
+
pattern?: string
|
|
11807
|
+
flags?: string
|
|
11808
|
+
} | string)))
|
|
11809
|
+
line?: (boolean | (({
|
|
11810
|
+
pattern?: string
|
|
11811
|
+
flags?: string
|
|
11812
|
+
} | string)[] | ({
|
|
11813
|
+
pattern?: string
|
|
11814
|
+
flags?: string
|
|
11815
|
+
} | string)))
|
|
11816
|
+
})
|
|
10806
11817
|
|
|
10807
|
-
|
|
11818
|
+
partitionByNewLine?: boolean
|
|
10808
11819
|
|
|
10809
11820
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10810
11821
|
|
|
10811
|
-
|
|
10812
|
-
|
|
11822
|
+
ignorePattern?: (({
|
|
11823
|
+
pattern?: string
|
|
11824
|
+
flags?: string
|
|
11825
|
+
} | string)[] | ({
|
|
11826
|
+
pattern?: string
|
|
11827
|
+
flags?: string
|
|
11828
|
+
} | string))
|
|
11829
|
+
|
|
11830
|
+
groups?: (string | string[] | {
|
|
11831
|
+
|
|
11832
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11833
|
+
})[]
|
|
11834
|
+
}[]
|
|
11835
|
+
// ----- perfectionist/sort-sets -----
|
|
11836
|
+
type PerfectionistSortSets = {
|
|
11837
|
+
|
|
11838
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
11839
|
+
|
|
11840
|
+
fallbackSort?: {
|
|
11841
|
+
|
|
11842
|
+
order?: ("asc" | "desc")
|
|
11843
|
+
|
|
11844
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11845
|
+
[k: string]: unknown | undefined
|
|
10813
11846
|
}
|
|
10814
11847
|
|
|
10815
11848
|
ignoreCase?: boolean
|
|
10816
11849
|
|
|
10817
|
-
|
|
11850
|
+
alphabet?: string
|
|
10818
11851
|
|
|
10819
|
-
|
|
11852
|
+
locales?: (string | string[])
|
|
10820
11853
|
|
|
10821
11854
|
order?: ("asc" | "desc")
|
|
10822
11855
|
|
|
10823
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
10824
|
-
}]
|
|
10825
|
-
// ----- perfectionist/sort-sets -----
|
|
10826
|
-
type PerfectionistSortSets = []|[{
|
|
10827
|
-
|
|
10828
|
-
partitionByComment?: (string[] | boolean | string)
|
|
11856
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10829
11857
|
|
|
10830
11858
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10831
11859
|
|
|
10832
|
-
|
|
10833
|
-
|
|
10834
|
-
|
|
11860
|
+
customGroups?: ({
|
|
11861
|
+
|
|
11862
|
+
groupName?: string
|
|
11863
|
+
|
|
11864
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
11865
|
+
|
|
11866
|
+
order?: ("desc" | "asc")
|
|
11867
|
+
|
|
11868
|
+
newlinesInside?: ("always" | "never")
|
|
11869
|
+
anyOf?: {
|
|
11870
|
+
|
|
11871
|
+
selector?: ("literal" | "spread")
|
|
11872
|
+
|
|
11873
|
+
elementNamePattern?: (({
|
|
11874
|
+
pattern?: string
|
|
11875
|
+
flags?: string
|
|
11876
|
+
} | string)[] | ({
|
|
11877
|
+
pattern?: string
|
|
11878
|
+
flags?: string
|
|
11879
|
+
} | string))
|
|
11880
|
+
}[]
|
|
11881
|
+
} | {
|
|
11882
|
+
|
|
11883
|
+
groupName?: string
|
|
11884
|
+
|
|
11885
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
11886
|
+
|
|
11887
|
+
order?: ("desc" | "asc")
|
|
11888
|
+
|
|
11889
|
+
newlinesInside?: ("always" | "never")
|
|
11890
|
+
|
|
11891
|
+
selector?: ("literal" | "spread")
|
|
11892
|
+
|
|
11893
|
+
elementNamePattern?: (({
|
|
11894
|
+
pattern?: string
|
|
11895
|
+
flags?: string
|
|
11896
|
+
} | string)[] | ({
|
|
11897
|
+
pattern?: string
|
|
11898
|
+
flags?: string
|
|
11899
|
+
} | string))
|
|
11900
|
+
})[]
|
|
11901
|
+
useConfigurationIf?: {
|
|
11902
|
+
|
|
11903
|
+
allNamesMatchPattern?: (({
|
|
11904
|
+
pattern?: string
|
|
11905
|
+
flags?: string
|
|
11906
|
+
} | string)[] | ({
|
|
11907
|
+
pattern?: string
|
|
11908
|
+
flags?: string
|
|
11909
|
+
} | string))
|
|
11910
|
+
}
|
|
10835
11911
|
|
|
10836
|
-
|
|
11912
|
+
partitionByComment?: (boolean | (({
|
|
11913
|
+
pattern?: string
|
|
11914
|
+
flags?: string
|
|
11915
|
+
} | string)[] | ({
|
|
11916
|
+
pattern?: string
|
|
11917
|
+
flags?: string
|
|
11918
|
+
} | string)) | {
|
|
11919
|
+
block?: (boolean | (({
|
|
11920
|
+
pattern?: string
|
|
11921
|
+
flags?: string
|
|
11922
|
+
} | string)[] | ({
|
|
11923
|
+
pattern?: string
|
|
11924
|
+
flags?: string
|
|
11925
|
+
} | string)))
|
|
11926
|
+
line?: (boolean | (({
|
|
11927
|
+
pattern?: string
|
|
11928
|
+
flags?: string
|
|
11929
|
+
} | string)[] | ({
|
|
11930
|
+
pattern?: string
|
|
11931
|
+
flags?: string
|
|
11932
|
+
} | string)))
|
|
11933
|
+
})
|
|
10837
11934
|
|
|
10838
|
-
|
|
11935
|
+
partitionByNewLine?: boolean
|
|
10839
11936
|
|
|
10840
|
-
|
|
11937
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10841
11938
|
|
|
10842
|
-
|
|
10843
|
-
|
|
11939
|
+
groups?: (string | string[] | {
|
|
11940
|
+
|
|
11941
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
11942
|
+
})[]
|
|
11943
|
+
}[]
|
|
10844
11944
|
// ----- perfectionist/sort-switch-case -----
|
|
10845
11945
|
type PerfectionistSortSwitchCase = []|[{
|
|
10846
11946
|
|
|
10847
11947
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10848
11948
|
|
|
11949
|
+
fallbackSort?: {
|
|
11950
|
+
|
|
11951
|
+
order?: ("asc" | "desc")
|
|
11952
|
+
|
|
11953
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11954
|
+
[k: string]: unknown | undefined
|
|
11955
|
+
}
|
|
11956
|
+
|
|
10849
11957
|
ignoreCase?: boolean
|
|
10850
11958
|
|
|
11959
|
+
alphabet?: string
|
|
11960
|
+
|
|
10851
11961
|
locales?: (string | string[])
|
|
10852
11962
|
|
|
10853
11963
|
order?: ("asc" | "desc")
|
|
10854
11964
|
|
|
10855
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
11965
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10856
11966
|
}]
|
|
10857
11967
|
// ----- perfectionist/sort-union-types -----
|
|
10858
11968
|
type PerfectionistSortUnionTypes = []|[{
|
|
10859
11969
|
|
|
10860
|
-
partitionByComment?: (string[] | boolean | string)
|
|
10861
|
-
|
|
10862
|
-
partitionByNewLine?: boolean
|
|
10863
|
-
|
|
10864
11970
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10865
11971
|
|
|
10866
|
-
|
|
11972
|
+
fallbackSort?: {
|
|
11973
|
+
|
|
11974
|
+
order?: ("asc" | "desc")
|
|
11975
|
+
|
|
11976
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11977
|
+
[k: string]: unknown | undefined
|
|
11978
|
+
}
|
|
10867
11979
|
|
|
10868
11980
|
ignoreCase?: boolean
|
|
10869
11981
|
|
|
10870
|
-
|
|
11982
|
+
alphabet?: string
|
|
10871
11983
|
|
|
10872
|
-
|
|
11984
|
+
locales?: (string | string[])
|
|
10873
11985
|
|
|
10874
11986
|
order?: ("asc" | "desc")
|
|
10875
11987
|
|
|
10876
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
11988
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11989
|
+
|
|
11990
|
+
partitionByComment?: (boolean | (({
|
|
11991
|
+
pattern?: string
|
|
11992
|
+
flags?: string
|
|
11993
|
+
} | string)[] | ({
|
|
11994
|
+
pattern?: string
|
|
11995
|
+
flags?: string
|
|
11996
|
+
} | string)) | {
|
|
11997
|
+
block?: (boolean | (({
|
|
11998
|
+
pattern?: string
|
|
11999
|
+
flags?: string
|
|
12000
|
+
} | string)[] | ({
|
|
12001
|
+
pattern?: string
|
|
12002
|
+
flags?: string
|
|
12003
|
+
} | string)))
|
|
12004
|
+
line?: (boolean | (({
|
|
12005
|
+
pattern?: string
|
|
12006
|
+
flags?: string
|
|
12007
|
+
} | string)[] | ({
|
|
12008
|
+
pattern?: string
|
|
12009
|
+
flags?: string
|
|
12010
|
+
} | string)))
|
|
12011
|
+
})
|
|
12012
|
+
|
|
12013
|
+
partitionByNewLine?: boolean
|
|
12014
|
+
|
|
12015
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12016
|
+
|
|
12017
|
+
groups?: (string | string[] | {
|
|
12018
|
+
|
|
12019
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
12020
|
+
})[]
|
|
10877
12021
|
}]
|
|
10878
12022
|
// ----- perfectionist/sort-variable-declarations -----
|
|
10879
12023
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
10880
12024
|
|
|
10881
|
-
partitionByComment?: (string[] | boolean | string)
|
|
10882
|
-
|
|
10883
|
-
partitionByNewLine?: boolean
|
|
10884
|
-
|
|
10885
12025
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10886
12026
|
|
|
12027
|
+
fallbackSort?: {
|
|
12028
|
+
|
|
12029
|
+
order?: ("asc" | "desc")
|
|
12030
|
+
|
|
12031
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12032
|
+
[k: string]: unknown | undefined
|
|
12033
|
+
}
|
|
12034
|
+
|
|
10887
12035
|
ignoreCase?: boolean
|
|
10888
12036
|
|
|
12037
|
+
alphabet?: string
|
|
12038
|
+
|
|
10889
12039
|
locales?: (string | string[])
|
|
10890
12040
|
|
|
10891
12041
|
order?: ("asc" | "desc")
|
|
10892
12042
|
|
|
10893
|
-
type?: ("alphabetical" | "natural" | "line-length")
|
|
12043
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
12044
|
+
|
|
12045
|
+
partitionByComment?: (boolean | (({
|
|
12046
|
+
pattern?: string
|
|
12047
|
+
flags?: string
|
|
12048
|
+
} | string)[] | ({
|
|
12049
|
+
pattern?: string
|
|
12050
|
+
flags?: string
|
|
12051
|
+
} | string)) | {
|
|
12052
|
+
block?: (boolean | (({
|
|
12053
|
+
pattern?: string
|
|
12054
|
+
flags?: string
|
|
12055
|
+
} | string)[] | ({
|
|
12056
|
+
pattern?: string
|
|
12057
|
+
flags?: string
|
|
12058
|
+
} | string)))
|
|
12059
|
+
line?: (boolean | (({
|
|
12060
|
+
pattern?: string
|
|
12061
|
+
flags?: string
|
|
12062
|
+
} | string)[] | ({
|
|
12063
|
+
pattern?: string
|
|
12064
|
+
flags?: string
|
|
12065
|
+
} | string)))
|
|
12066
|
+
})
|
|
12067
|
+
|
|
12068
|
+
partitionByNewLine?: boolean
|
|
10894
12069
|
}]
|
|
10895
12070
|
// ----- playwright/expect-expect -----
|
|
10896
12071
|
type PlaywrightExpectExpect = []|[{
|
|
@@ -10924,6 +12099,10 @@ type PlaywrightNoRestrictedMatchers = []|[{
|
|
|
10924
12099
|
type PlaywrightNoSkippedTest = []|[{
|
|
10925
12100
|
allowConditional?: boolean
|
|
10926
12101
|
}]
|
|
12102
|
+
// ----- playwright/no-slowed-test -----
|
|
12103
|
+
type PlaywrightNoSlowedTest = []|[{
|
|
12104
|
+
allowConditional?: boolean
|
|
12105
|
+
}]
|
|
10927
12106
|
// ----- playwright/prefer-lowercase-title -----
|
|
10928
12107
|
type PlaywrightPreferLowercaseTitle = []|[{
|
|
10929
12108
|
allowedPrefixes?: string[]
|
|
@@ -12051,8 +13230,7 @@ type VitestNoRestrictedViMethods = []|[{
|
|
|
12051
13230
|
}]
|
|
12052
13231
|
// ----- vitest/no-standalone-expect -----
|
|
12053
13232
|
type VitestNoStandaloneExpect = []|[{
|
|
12054
|
-
|
|
12055
|
-
[k: string]: unknown | undefined
|
|
13233
|
+
additionalTestBlockFunctions?: string[]
|
|
12056
13234
|
}]
|
|
12057
13235
|
// ----- vitest/prefer-expect-assertions -----
|
|
12058
13236
|
type VitestPreferExpectAssertions = []|[{
|
|
@@ -12073,6 +13251,10 @@ type VitestPreferSnapshotHint = []|[("always" | "multi")]
|
|
|
12073
13251
|
type VitestRequireHook = []|[{
|
|
12074
13252
|
allowedFunctionCalls?: string[]
|
|
12075
13253
|
}]
|
|
13254
|
+
// ----- vitest/require-mock-type-parameters -----
|
|
13255
|
+
type VitestRequireMockTypeParameters = []|[{
|
|
13256
|
+
checkImportFunctions?: boolean
|
|
13257
|
+
}]
|
|
12076
13258
|
// ----- vitest/require-top-level-describe -----
|
|
12077
13259
|
type VitestRequireTopLevelDescribe = []|[{
|
|
12078
13260
|
maxNumberOfTopLevelDescribes?: number
|
|
@@ -12417,14 +13599,14 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
12417
13599
|
"import-x/parsers": {
|
|
12418
13600
|
'@typescript-eslint/parser': (".ts" | ".tsx" | ".cts" | ".mts")[];
|
|
12419
13601
|
};
|
|
12420
|
-
"import-x/resolver-next": {
|
|
13602
|
+
"import-x/resolver-next": (eslint_plugin_import_x_types_js.NewResolver | {
|
|
12421
13603
|
interfaceVersion: number;
|
|
12422
13604
|
name: string;
|
|
12423
13605
|
resolve(source: string, file: string): {
|
|
12424
13606
|
found: boolean;
|
|
12425
13607
|
path?: string | null | undefined;
|
|
12426
13608
|
};
|
|
12427
|
-
}[];
|
|
13609
|
+
})[];
|
|
12428
13610
|
};
|
|
12429
13611
|
} | {
|
|
12430
13612
|
readonly name: "jimmy.codes/imports";
|
|
@@ -12837,6 +14019,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
12837
14019
|
}, _typescript_eslint_utils_ts_eslint.RuleListener>;
|
|
12838
14020
|
};
|
|
12839
14021
|
importXResolverCompat: typeof eslint_plugin_import_x_utils_resolve_js.importXResolverCompat;
|
|
14022
|
+
createNodeResolver: typeof eslint_plugin_import_x_node_resolver_js.createNodeResolver;
|
|
12840
14023
|
};
|
|
12841
14024
|
readonly n: eslint.ESLint.Plugin & {
|
|
12842
14025
|
configs: eslint_plugin_n.Configs;
|
|
@@ -12967,6 +14150,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
12967
14150
|
"playwright/no-nested-step": "error";
|
|
12968
14151
|
"playwright/no-page-pause": "error";
|
|
12969
14152
|
"playwright/no-skipped-test": "error";
|
|
14153
|
+
"playwright/no-slowed-test": "error";
|
|
12970
14154
|
"playwright/no-useless-await": "error";
|
|
12971
14155
|
"playwright/no-useless-not": "error";
|
|
12972
14156
|
"playwright/no-wait-for-selector": "error";
|
|
@@ -14142,27 +15326,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14142
15326
|
'forbid-elements': eslint.Rule.RuleModule;
|
|
14143
15327
|
'forbid-foreign-prop-types': eslint.Rule.RuleModule;
|
|
14144
15328
|
'forbid-prop-types': eslint.Rule.RuleModule;
|
|
14145
|
-
'forward-ref-uses-ref':
|
|
14146
|
-
meta: {
|
|
14147
|
-
docs: {
|
|
14148
|
-
description: string;
|
|
14149
|
-
category: string;
|
|
14150
|
-
recommended: boolean;
|
|
14151
|
-
url: string;
|
|
14152
|
-
};
|
|
14153
|
-
messages: {
|
|
14154
|
-
missingRefParameter: string;
|
|
14155
|
-
addRefParameter: string;
|
|
14156
|
-
removeForwardRef: string;
|
|
14157
|
-
};
|
|
14158
|
-
schema: undefined[];
|
|
14159
|
-
type: string;
|
|
14160
|
-
hasSuggestions: boolean;
|
|
14161
|
-
};
|
|
14162
|
-
create(context: any): {
|
|
14163
|
-
"FunctionExpression, ArrowFunctionExpression"(node: any): void;
|
|
14164
|
-
};
|
|
14165
|
-
};
|
|
15329
|
+
'forward-ref-uses-ref': eslint.Rule.RuleModule;
|
|
14166
15330
|
'function-component-definition': eslint.Rule.RuleModule;
|
|
14167
15331
|
'hook-use-state': eslint.Rule.RuleModule;
|
|
14168
15332
|
'iframe-missing-sandbox': eslint.Rule.RuleModule;
|
|
@@ -14187,23 +15351,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14187
15351
|
'jsx-no-constructed-context-values': eslint.Rule.RuleModule;
|
|
14188
15352
|
'jsx-no-duplicate-props': eslint.Rule.RuleModule;
|
|
14189
15353
|
'jsx-no-leaked-render': eslint.Rule.RuleModule;
|
|
14190
|
-
'jsx-no-literals':
|
|
14191
|
-
meta: eslint.Rule.RuleMetaData;
|
|
14192
|
-
create(context: any): (false & {
|
|
14193
|
-
Literal(node: any): void;
|
|
14194
|
-
JSXAttribute(node: any): void;
|
|
14195
|
-
JSXText(node: any): void;
|
|
14196
|
-
TemplateLiteral(node: any): void;
|
|
14197
|
-
}) | ({
|
|
14198
|
-
ImportDeclaration(node: any): void;
|
|
14199
|
-
VariableDeclaration(node: any): void;
|
|
14200
|
-
} & {
|
|
14201
|
-
Literal(node: any): void;
|
|
14202
|
-
JSXAttribute(node: any): void;
|
|
14203
|
-
JSXText(node: any): void;
|
|
14204
|
-
TemplateLiteral(node: any): void;
|
|
14205
|
-
});
|
|
14206
|
-
};
|
|
15354
|
+
'jsx-no-literals': eslint.Rule.RuleModule;
|
|
14207
15355
|
'jsx-no-script-url': eslint.Rule.RuleModule;
|
|
14208
15356
|
'jsx-no-target-blank': eslint.Rule.RuleModule;
|
|
14209
15357
|
'jsx-no-useless-fragment': eslint.Rule.RuleModule;
|
|
@@ -14214,22 +15362,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14214
15362
|
'jsx-fragments': eslint.Rule.RuleModule;
|
|
14215
15363
|
'jsx-props-no-multi-spaces': eslint.Rule.RuleModule;
|
|
14216
15364
|
'jsx-props-no-spreading': eslint.Rule.RuleModule;
|
|
14217
|
-
'jsx-props-no-spread-multi':
|
|
14218
|
-
meta: {
|
|
14219
|
-
docs: {
|
|
14220
|
-
description: string;
|
|
14221
|
-
category: string;
|
|
14222
|
-
recommended: boolean;
|
|
14223
|
-
url: string;
|
|
14224
|
-
};
|
|
14225
|
-
messages: {
|
|
14226
|
-
noMultiSpreading: string;
|
|
14227
|
-
};
|
|
14228
|
-
};
|
|
14229
|
-
create(context: any): {
|
|
14230
|
-
JSXOpeningElement(node: any): void;
|
|
14231
|
-
};
|
|
14232
|
-
};
|
|
15365
|
+
'jsx-props-no-spread-multi': eslint.Rule.RuleModule;
|
|
14233
15366
|
'jsx-sort-default-props': eslint.Rule.RuleModule;
|
|
14234
15367
|
'jsx-sort-props': eslint.Rule.RuleModule;
|
|
14235
15368
|
'jsx-space-before-closing': eslint.Rule.RuleModule;
|
|
@@ -14298,27 +15431,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14298
15431
|
'forbid-elements': eslint.Rule.RuleModule;
|
|
14299
15432
|
'forbid-foreign-prop-types': eslint.Rule.RuleModule;
|
|
14300
15433
|
'forbid-prop-types': eslint.Rule.RuleModule;
|
|
14301
|
-
'forward-ref-uses-ref':
|
|
14302
|
-
meta: {
|
|
14303
|
-
docs: {
|
|
14304
|
-
description: string;
|
|
14305
|
-
category: string;
|
|
14306
|
-
recommended: boolean;
|
|
14307
|
-
url: string;
|
|
14308
|
-
};
|
|
14309
|
-
messages: {
|
|
14310
|
-
missingRefParameter: string;
|
|
14311
|
-
addRefParameter: string;
|
|
14312
|
-
removeForwardRef: string;
|
|
14313
|
-
};
|
|
14314
|
-
schema: undefined[];
|
|
14315
|
-
type: string;
|
|
14316
|
-
hasSuggestions: boolean;
|
|
14317
|
-
};
|
|
14318
|
-
create(context: any): {
|
|
14319
|
-
"FunctionExpression, ArrowFunctionExpression"(node: any): void;
|
|
14320
|
-
};
|
|
14321
|
-
};
|
|
15434
|
+
'forward-ref-uses-ref': eslint.Rule.RuleModule;
|
|
14322
15435
|
'function-component-definition': eslint.Rule.RuleModule;
|
|
14323
15436
|
'hook-use-state': eslint.Rule.RuleModule;
|
|
14324
15437
|
'iframe-missing-sandbox': eslint.Rule.RuleModule;
|
|
@@ -14343,23 +15456,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14343
15456
|
'jsx-no-constructed-context-values': eslint.Rule.RuleModule;
|
|
14344
15457
|
'jsx-no-duplicate-props': eslint.Rule.RuleModule;
|
|
14345
15458
|
'jsx-no-leaked-render': eslint.Rule.RuleModule;
|
|
14346
|
-
'jsx-no-literals':
|
|
14347
|
-
meta: eslint.Rule.RuleMetaData;
|
|
14348
|
-
create(context: any): (false & {
|
|
14349
|
-
Literal(node: any): void;
|
|
14350
|
-
JSXAttribute(node: any): void;
|
|
14351
|
-
JSXText(node: any): void;
|
|
14352
|
-
TemplateLiteral(node: any): void;
|
|
14353
|
-
}) | ({
|
|
14354
|
-
ImportDeclaration(node: any): void;
|
|
14355
|
-
VariableDeclaration(node: any): void;
|
|
14356
|
-
} & {
|
|
14357
|
-
Literal(node: any): void;
|
|
14358
|
-
JSXAttribute(node: any): void;
|
|
14359
|
-
JSXText(node: any): void;
|
|
14360
|
-
TemplateLiteral(node: any): void;
|
|
14361
|
-
});
|
|
14362
|
-
};
|
|
15459
|
+
'jsx-no-literals': eslint.Rule.RuleModule;
|
|
14363
15460
|
'jsx-no-script-url': eslint.Rule.RuleModule;
|
|
14364
15461
|
'jsx-no-target-blank': eslint.Rule.RuleModule;
|
|
14365
15462
|
'jsx-no-useless-fragment': eslint.Rule.RuleModule;
|
|
@@ -14370,22 +15467,7 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14370
15467
|
'jsx-fragments': eslint.Rule.RuleModule;
|
|
14371
15468
|
'jsx-props-no-multi-spaces': eslint.Rule.RuleModule;
|
|
14372
15469
|
'jsx-props-no-spreading': eslint.Rule.RuleModule;
|
|
14373
|
-
'jsx-props-no-spread-multi':
|
|
14374
|
-
meta: {
|
|
14375
|
-
docs: {
|
|
14376
|
-
description: string;
|
|
14377
|
-
category: string;
|
|
14378
|
-
recommended: boolean;
|
|
14379
|
-
url: string;
|
|
14380
|
-
};
|
|
14381
|
-
messages: {
|
|
14382
|
-
noMultiSpreading: string;
|
|
14383
|
-
};
|
|
14384
|
-
};
|
|
14385
|
-
create(context: any): {
|
|
14386
|
-
JSXOpeningElement(node: any): void;
|
|
14387
|
-
};
|
|
14388
|
-
};
|
|
15470
|
+
'jsx-props-no-spread-multi': eslint.Rule.RuleModule;
|
|
14389
15471
|
'jsx-sort-default-props': eslint.Rule.RuleModule;
|
|
14390
15472
|
'jsx-sort-props': eslint.Rule.RuleModule;
|
|
14391
15473
|
'jsx-space-before-closing': eslint.Rule.RuleModule;
|
|
@@ -14451,28 +15533,28 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14451
15533
|
};
|
|
14452
15534
|
};
|
|
14453
15535
|
rules: {
|
|
14454
|
-
"react/display-name":
|
|
14455
|
-
"react/jsx-key":
|
|
14456
|
-
"react/jsx-no-comment-textnodes":
|
|
14457
|
-
"react/jsx-no-duplicate-props":
|
|
14458
|
-
"react/jsx-no-target-blank":
|
|
14459
|
-
"react/jsx-no-undef":
|
|
14460
|
-
"react/jsx-uses-react":
|
|
14461
|
-
"react/jsx-uses-vars":
|
|
14462
|
-
"react/no-children-prop":
|
|
14463
|
-
"react/no-danger-with-children":
|
|
14464
|
-
"react/no-deprecated":
|
|
14465
|
-
"react/no-direct-mutation-state":
|
|
14466
|
-
"react/no-find-dom-node":
|
|
14467
|
-
"react/no-is-mounted":
|
|
14468
|
-
"react/no-render-return-value":
|
|
14469
|
-
"react/no-string-refs":
|
|
14470
|
-
"react/no-unescaped-entities":
|
|
14471
|
-
"react/no-unknown-property":
|
|
14472
|
-
"react/no-unsafe":
|
|
14473
|
-
"react/prop-types":
|
|
14474
|
-
"react/react-in-jsx-scope":
|
|
14475
|
-
"react/require-render-return":
|
|
15536
|
+
"react/display-name": 2;
|
|
15537
|
+
"react/jsx-key": 2;
|
|
15538
|
+
"react/jsx-no-comment-textnodes": 2;
|
|
15539
|
+
"react/jsx-no-duplicate-props": 2;
|
|
15540
|
+
"react/jsx-no-target-blank": 2;
|
|
15541
|
+
"react/jsx-no-undef": 2;
|
|
15542
|
+
"react/jsx-uses-react": 2;
|
|
15543
|
+
"react/jsx-uses-vars": 2;
|
|
15544
|
+
"react/no-children-prop": 2;
|
|
15545
|
+
"react/no-danger-with-children": 2;
|
|
15546
|
+
"react/no-deprecated": 2;
|
|
15547
|
+
"react/no-direct-mutation-state": 2;
|
|
15548
|
+
"react/no-find-dom-node": 2;
|
|
15549
|
+
"react/no-is-mounted": 2;
|
|
15550
|
+
"react/no-render-return-value": 2;
|
|
15551
|
+
"react/no-string-refs": 2;
|
|
15552
|
+
"react/no-unescaped-entities": 2;
|
|
15553
|
+
"react/no-unknown-property": 2;
|
|
15554
|
+
"react/no-unsafe": 0;
|
|
15555
|
+
"react/prop-types": 2;
|
|
15556
|
+
"react/react-in-jsx-scope": 2;
|
|
15557
|
+
"react/require-render-return": 2;
|
|
14476
15558
|
};
|
|
14477
15559
|
};
|
|
14478
15560
|
all: {
|
|
@@ -14493,12 +15575,13 @@ declare const eslintConfig: ({ astro, autoDetect, configs, ignores, jest, nextjs
|
|
|
14493
15575
|
jsxPragma: any;
|
|
14494
15576
|
};
|
|
14495
15577
|
rules: {
|
|
14496
|
-
"react/react-in-jsx-scope":
|
|
14497
|
-
"react/jsx-uses-react":
|
|
15578
|
+
"react/react-in-jsx-scope": 0;
|
|
15579
|
+
"react/jsx-uses-react": 0;
|
|
14498
15580
|
};
|
|
14499
15581
|
};
|
|
15582
|
+
flat: Record<string, eslint_plugin_react.ReactFlatConfig>;
|
|
14500
15583
|
} & {
|
|
14501
|
-
flat
|
|
15584
|
+
flat: Record<string, eslint_plugin_react.ReactFlatConfig>;
|
|
14502
15585
|
};
|
|
14503
15586
|
};
|
|
14504
15587
|
"react-compiler": eslint.ESLint.Plugin;
|