@jsse/eslint-config 0.3.4 → 0.3.6
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/CHANGELOG.md +12 -0
- package/dist/cli.js +1 -1
- package/dist/esm/configs/sort-tsconfig.js +3 -0
- package/dist/esm/configs/ts/parser.js +5 -1
- package/dist/esm/fixable.js +0 -1
- package/dist/esm/generated/version.d.ts +1 -1
- package/dist/esm/generated/version.js +1 -1
- package/dist/esm/lager.d.ts +2 -0
- package/dist/esm/lager.js +2 -0
- package/dist/index.d.ts +384 -334
- package/dist/index.js +13 -4
- package/package.json +23 -21
package/dist/index.d.ts
CHANGED
|
@@ -4353,233 +4353,233 @@ interface IgnoresRuleOptions {}
|
|
|
4353
4353
|
interface ImportsRuleOptions {
|
|
4354
4354
|
/**
|
|
4355
4355
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
4356
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4356
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/consistent-type-specifier-style.md
|
|
4357
4357
|
*/
|
|
4358
4358
|
"import/consistent-type-specifier-style"?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle$1>;
|
|
4359
4359
|
/**
|
|
4360
4360
|
* Ensure a default export is present, given a default import.
|
|
4361
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4361
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/default.md
|
|
4362
4362
|
*/
|
|
4363
4363
|
"import/default"?: Linter.RuleEntry<[]>;
|
|
4364
4364
|
/**
|
|
4365
4365
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
4366
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4366
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/dynamic-import-chunkname.md
|
|
4367
4367
|
*/
|
|
4368
4368
|
"import/dynamic-import-chunkname"?: Linter.RuleEntry<ImportDynamicImportChunkname$1>;
|
|
4369
4369
|
/**
|
|
4370
4370
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
4371
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4371
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/export.md
|
|
4372
4372
|
*/
|
|
4373
4373
|
"import/export"?: Linter.RuleEntry<[]>;
|
|
4374
4374
|
/**
|
|
4375
4375
|
* Ensure all exports appear after other statements.
|
|
4376
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4376
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/exports-last.md
|
|
4377
4377
|
*/
|
|
4378
4378
|
"import/exports-last"?: Linter.RuleEntry<[]>;
|
|
4379
4379
|
/**
|
|
4380
4380
|
* Ensure consistent use of file extension within the import path.
|
|
4381
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4381
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/extensions.md
|
|
4382
4382
|
*/
|
|
4383
4383
|
"import/extensions"?: Linter.RuleEntry<ImportExtensions$1>;
|
|
4384
4384
|
/**
|
|
4385
4385
|
* Ensure all imports appear before other statements.
|
|
4386
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4386
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/first.md
|
|
4387
4387
|
*/
|
|
4388
4388
|
"import/first"?: Linter.RuleEntry<ImportFirst$1>;
|
|
4389
4389
|
/**
|
|
4390
4390
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
4391
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4391
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/group-exports.md
|
|
4392
4392
|
*/
|
|
4393
4393
|
"import/group-exports"?: Linter.RuleEntry<[]>;
|
|
4394
4394
|
/**
|
|
4395
4395
|
* Replaced by `import-x/first`.
|
|
4396
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4396
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/imports-first.md
|
|
4397
4397
|
* @deprecated
|
|
4398
4398
|
*/
|
|
4399
4399
|
"import/imports-first"?: Linter.RuleEntry<ImportImportsFirst$1>;
|
|
4400
4400
|
/**
|
|
4401
4401
|
* Enforce the maximum number of dependencies a module can have.
|
|
4402
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4402
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/max-dependencies.md
|
|
4403
4403
|
*/
|
|
4404
4404
|
"import/max-dependencies"?: Linter.RuleEntry<ImportMaxDependencies$1>;
|
|
4405
4405
|
/**
|
|
4406
4406
|
* Ensure named imports correspond to a named export in the remote file.
|
|
4407
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4407
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/named.md
|
|
4408
4408
|
*/
|
|
4409
4409
|
"import/named"?: Linter.RuleEntry<ImportNamed$1>;
|
|
4410
4410
|
/**
|
|
4411
4411
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
4412
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4412
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/namespace.md
|
|
4413
4413
|
*/
|
|
4414
4414
|
"import/namespace"?: Linter.RuleEntry<ImportNamespace$1>;
|
|
4415
4415
|
/**
|
|
4416
4416
|
* Enforce a newline after import statements.
|
|
4417
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4417
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/newline-after-import.md
|
|
4418
4418
|
*/
|
|
4419
4419
|
"import/newline-after-import"?: Linter.RuleEntry<ImportNewlineAfterImport$1>;
|
|
4420
4420
|
/**
|
|
4421
4421
|
* Forbid import of modules using absolute paths.
|
|
4422
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4422
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-absolute-path.md
|
|
4423
4423
|
*/
|
|
4424
4424
|
"import/no-absolute-path"?: Linter.RuleEntry<ImportNoAbsolutePath$1>;
|
|
4425
4425
|
/**
|
|
4426
4426
|
* Forbid AMD `require` and `define` calls.
|
|
4427
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4427
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-amd.md
|
|
4428
4428
|
*/
|
|
4429
4429
|
"import/no-amd"?: Linter.RuleEntry<[]>;
|
|
4430
4430
|
/**
|
|
4431
4431
|
* Forbid anonymous values as default exports.
|
|
4432
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4432
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-anonymous-default-export.md
|
|
4433
4433
|
*/
|
|
4434
4434
|
"import/no-anonymous-default-export"?: Linter.RuleEntry<ImportNoAnonymousDefaultExport$1>;
|
|
4435
4435
|
/**
|
|
4436
4436
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
4437
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4437
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-commonjs.md
|
|
4438
4438
|
*/
|
|
4439
4439
|
"import/no-commonjs"?: Linter.RuleEntry<ImportNoCommonjs$1>;
|
|
4440
4440
|
/**
|
|
4441
4441
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
4442
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4442
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-cycle.md
|
|
4443
4443
|
*/
|
|
4444
4444
|
"import/no-cycle"?: Linter.RuleEntry<ImportNoCycle$1>;
|
|
4445
4445
|
/**
|
|
4446
4446
|
* Forbid default exports.
|
|
4447
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4447
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-default-export.md
|
|
4448
4448
|
*/
|
|
4449
4449
|
"import/no-default-export"?: Linter.RuleEntry<[]>;
|
|
4450
4450
|
/**
|
|
4451
4451
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
4452
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4452
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-deprecated.md
|
|
4453
4453
|
*/
|
|
4454
4454
|
"import/no-deprecated"?: Linter.RuleEntry<[]>;
|
|
4455
4455
|
/**
|
|
4456
4456
|
* Forbid repeated import of the same module in multiple places.
|
|
4457
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4457
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-duplicates.md
|
|
4458
4458
|
*/
|
|
4459
4459
|
"import/no-duplicates"?: Linter.RuleEntry<ImportNoDuplicates$1>;
|
|
4460
4460
|
/**
|
|
4461
4461
|
* Forbid `require()` calls with expressions.
|
|
4462
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4462
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-dynamic-require.md
|
|
4463
4463
|
*/
|
|
4464
4464
|
"import/no-dynamic-require"?: Linter.RuleEntry<ImportNoDynamicRequire$1>;
|
|
4465
4465
|
/**
|
|
4466
4466
|
* Forbid empty named import blocks.
|
|
4467
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4467
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-empty-named-blocks.md
|
|
4468
4468
|
*/
|
|
4469
4469
|
"import/no-empty-named-blocks"?: Linter.RuleEntry<[]>;
|
|
4470
4470
|
/**
|
|
4471
4471
|
* Forbid the use of extraneous packages.
|
|
4472
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4472
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-extraneous-dependencies.md
|
|
4473
4473
|
*/
|
|
4474
4474
|
"import/no-extraneous-dependencies"?: Linter.RuleEntry<ImportNoExtraneousDependencies$1>;
|
|
4475
4475
|
/**
|
|
4476
4476
|
* Forbid import statements with CommonJS module.exports.
|
|
4477
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4477
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-import-module-exports.md
|
|
4478
4478
|
*/
|
|
4479
4479
|
"import/no-import-module-exports"?: Linter.RuleEntry<ImportNoImportModuleExports$1>;
|
|
4480
4480
|
/**
|
|
4481
4481
|
* Forbid importing the submodules of other modules.
|
|
4482
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4482
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-internal-modules.md
|
|
4483
4483
|
*/
|
|
4484
4484
|
"import/no-internal-modules"?: Linter.RuleEntry<ImportNoInternalModules$1>;
|
|
4485
4485
|
/**
|
|
4486
4486
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
4487
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4487
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-mutable-exports.md
|
|
4488
4488
|
*/
|
|
4489
4489
|
"import/no-mutable-exports"?: Linter.RuleEntry<[]>;
|
|
4490
4490
|
/**
|
|
4491
4491
|
* Forbid use of exported name as identifier of default export.
|
|
4492
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4492
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-as-default.md
|
|
4493
4493
|
*/
|
|
4494
4494
|
"import/no-named-as-default"?: Linter.RuleEntry<[]>;
|
|
4495
4495
|
/**
|
|
4496
4496
|
* Forbid use of exported name as property of default export.
|
|
4497
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4497
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-as-default-member.md
|
|
4498
4498
|
*/
|
|
4499
4499
|
"import/no-named-as-default-member"?: Linter.RuleEntry<[]>;
|
|
4500
4500
|
/**
|
|
4501
4501
|
* Forbid named default exports.
|
|
4502
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4502
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-default.md
|
|
4503
4503
|
*/
|
|
4504
4504
|
"import/no-named-default"?: Linter.RuleEntry<[]>;
|
|
4505
4505
|
/**
|
|
4506
4506
|
* Forbid named exports.
|
|
4507
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4507
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-export.md
|
|
4508
4508
|
*/
|
|
4509
4509
|
"import/no-named-export"?: Linter.RuleEntry<[]>;
|
|
4510
4510
|
/**
|
|
4511
4511
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
4512
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4512
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-namespace.md
|
|
4513
4513
|
*/
|
|
4514
4514
|
"import/no-namespace"?: Linter.RuleEntry<ImportNoNamespace$1>;
|
|
4515
4515
|
/**
|
|
4516
4516
|
* Forbid Node.js builtin modules.
|
|
4517
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4517
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-nodejs-modules.md
|
|
4518
4518
|
*/
|
|
4519
4519
|
"import/no-nodejs-modules"?: Linter.RuleEntry<ImportNoNodejsModules$1>;
|
|
4520
4520
|
/**
|
|
4521
4521
|
* Forbid importing packages through relative paths.
|
|
4522
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4522
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-relative-packages.md
|
|
4523
4523
|
*/
|
|
4524
4524
|
"import/no-relative-packages"?: Linter.RuleEntry<ImportNoRelativePackages$1>;
|
|
4525
4525
|
/**
|
|
4526
4526
|
* Forbid importing modules from parent directories.
|
|
4527
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4527
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-relative-parent-imports.md
|
|
4528
4528
|
*/
|
|
4529
4529
|
"import/no-relative-parent-imports"?: Linter.RuleEntry<ImportNoRelativeParentImports$1>;
|
|
4530
4530
|
/**
|
|
4531
4531
|
* Forbid importing a default export by a different name.
|
|
4532
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4532
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-rename-default.md
|
|
4533
4533
|
*/
|
|
4534
4534
|
"import/no-rename-default"?: Linter.RuleEntry<ImportNoRenameDefault$1>;
|
|
4535
4535
|
/**
|
|
4536
4536
|
* Enforce which files can be imported in a given folder.
|
|
4537
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4537
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-restricted-paths.md
|
|
4538
4538
|
*/
|
|
4539
4539
|
"import/no-restricted-paths"?: Linter.RuleEntry<ImportNoRestrictedPaths$1>;
|
|
4540
4540
|
/**
|
|
4541
4541
|
* Forbid a module from importing itself.
|
|
4542
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4542
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-self-import.md
|
|
4543
4543
|
*/
|
|
4544
4544
|
"import/no-self-import"?: Linter.RuleEntry<[]>;
|
|
4545
4545
|
/**
|
|
4546
4546
|
* Forbid unassigned imports.
|
|
4547
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4547
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-unassigned-import.md
|
|
4548
4548
|
*/
|
|
4549
4549
|
"import/no-unassigned-import"?: Linter.RuleEntry<ImportNoUnassignedImport$1>;
|
|
4550
4550
|
/**
|
|
4551
4551
|
* Ensure imports point to a file/module that can be resolved.
|
|
4552
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4552
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-unresolved.md
|
|
4553
4553
|
*/
|
|
4554
4554
|
"import/no-unresolved"?: Linter.RuleEntry<ImportNoUnresolved$1>;
|
|
4555
4555
|
/**
|
|
4556
4556
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
4557
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4557
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-unused-modules.md
|
|
4558
4558
|
*/
|
|
4559
4559
|
"import/no-unused-modules"?: Linter.RuleEntry<ImportNoUnusedModules$1>;
|
|
4560
4560
|
/**
|
|
4561
4561
|
* Forbid unnecessary path segments in import and require statements.
|
|
4562
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4562
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-useless-path-segments.md
|
|
4563
4563
|
*/
|
|
4564
4564
|
"import/no-useless-path-segments"?: Linter.RuleEntry<ImportNoUselessPathSegments$1>;
|
|
4565
4565
|
/**
|
|
4566
4566
|
* Forbid webpack loader syntax in imports.
|
|
4567
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4567
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-webpack-loader-syntax.md
|
|
4568
4568
|
*/
|
|
4569
4569
|
"import/no-webpack-loader-syntax"?: Linter.RuleEntry<[]>;
|
|
4570
4570
|
/**
|
|
4571
4571
|
* Enforce a convention in module import order.
|
|
4572
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4572
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/order.md
|
|
4573
4573
|
*/
|
|
4574
4574
|
"import/order"?: Linter.RuleEntry<ImportOrder$1>;
|
|
4575
4575
|
/**
|
|
4576
4576
|
* Prefer a default export if module exports a single name or multiple names.
|
|
4577
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4577
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/prefer-default-export.md
|
|
4578
4578
|
*/
|
|
4579
4579
|
"import/prefer-default-export"?: Linter.RuleEntry<ImportPreferDefaultExport$1>;
|
|
4580
4580
|
/**
|
|
4581
4581
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
4582
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
4582
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/unambiguous.md
|
|
4583
4583
|
*/
|
|
4584
4584
|
"import/unambiguous"?: Linter.RuleEntry<[]>;
|
|
4585
4585
|
}
|
|
@@ -11106,141 +11106,6 @@ type PerfectionistSortHeritageClauses =
|
|
|
11106
11106
|
)[];
|
|
11107
11107
|
},
|
|
11108
11108
|
];
|
|
11109
|
-
// ----- perfectionist/sort-imports -----
|
|
11110
|
-
type PerfectionistSortImports = [] | [_PerfectionistSortImportsSortImports];
|
|
11111
|
-
type _PerfectionistSortImportsSortImports =
|
|
11112
|
-
_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
11113
|
-
fallbackSort?: {
|
|
11114
|
-
order?: "asc" | "desc";
|
|
11115
|
-
|
|
11116
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
11117
|
-
[k: string]: unknown | undefined;
|
|
11118
|
-
};
|
|
11119
|
-
|
|
11120
|
-
specialCharacters?: "remove" | "trim" | "keep";
|
|
11121
|
-
|
|
11122
|
-
ignoreCase?: boolean;
|
|
11123
|
-
|
|
11124
|
-
alphabet?: string;
|
|
11125
|
-
|
|
11126
|
-
locales?: string | string[];
|
|
11127
|
-
|
|
11128
|
-
order?: "asc" | "desc";
|
|
11129
|
-
|
|
11130
|
-
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
11131
|
-
|
|
11132
|
-
customGroups?: {
|
|
11133
|
-
value?: {
|
|
11134
|
-
[k: string]: unknown | undefined;
|
|
11135
|
-
};
|
|
11136
|
-
|
|
11137
|
-
type?: {
|
|
11138
|
-
[k: string]: unknown | undefined;
|
|
11139
|
-
};
|
|
11140
|
-
};
|
|
11141
|
-
|
|
11142
|
-
maxLineLength?: number;
|
|
11143
|
-
|
|
11144
|
-
sortSideEffects?: boolean;
|
|
11145
|
-
|
|
11146
|
-
environment?: "node" | "bun";
|
|
11147
|
-
|
|
11148
|
-
tsconfigRootDir?: string;
|
|
11149
|
-
|
|
11150
|
-
partitionByComment?:
|
|
11151
|
-
| boolean
|
|
11152
|
-
| (
|
|
11153
|
-
| (
|
|
11154
|
-
| {
|
|
11155
|
-
pattern?: string;
|
|
11156
|
-
flags?: string;
|
|
11157
|
-
}
|
|
11158
|
-
| string
|
|
11159
|
-
)[]
|
|
11160
|
-
| (
|
|
11161
|
-
| {
|
|
11162
|
-
pattern?: string;
|
|
11163
|
-
flags?: string;
|
|
11164
|
-
}
|
|
11165
|
-
| string
|
|
11166
|
-
)
|
|
11167
|
-
)
|
|
11168
|
-
| {
|
|
11169
|
-
block?:
|
|
11170
|
-
| boolean
|
|
11171
|
-
| (
|
|
11172
|
-
| (
|
|
11173
|
-
| {
|
|
11174
|
-
pattern?: string;
|
|
11175
|
-
flags?: string;
|
|
11176
|
-
}
|
|
11177
|
-
| string
|
|
11178
|
-
)[]
|
|
11179
|
-
| (
|
|
11180
|
-
| {
|
|
11181
|
-
pattern?: string;
|
|
11182
|
-
flags?: string;
|
|
11183
|
-
}
|
|
11184
|
-
| string
|
|
11185
|
-
)
|
|
11186
|
-
);
|
|
11187
|
-
line?:
|
|
11188
|
-
| boolean
|
|
11189
|
-
| (
|
|
11190
|
-
| (
|
|
11191
|
-
| {
|
|
11192
|
-
pattern?: string;
|
|
11193
|
-
flags?: string;
|
|
11194
|
-
}
|
|
11195
|
-
| string
|
|
11196
|
-
)[]
|
|
11197
|
-
| (
|
|
11198
|
-
| {
|
|
11199
|
-
pattern?: string;
|
|
11200
|
-
flags?: string;
|
|
11201
|
-
}
|
|
11202
|
-
| string
|
|
11203
|
-
)
|
|
11204
|
-
);
|
|
11205
|
-
};
|
|
11206
|
-
|
|
11207
|
-
partitionByNewLine?: boolean;
|
|
11208
|
-
|
|
11209
|
-
newlinesBetween?: "ignore" | "always" | "never";
|
|
11210
|
-
|
|
11211
|
-
internalPattern?:
|
|
11212
|
-
| (
|
|
11213
|
-
| {
|
|
11214
|
-
pattern?: string;
|
|
11215
|
-
flags?: string;
|
|
11216
|
-
}
|
|
11217
|
-
| string
|
|
11218
|
-
)[]
|
|
11219
|
-
| (
|
|
11220
|
-
| {
|
|
11221
|
-
pattern?: string;
|
|
11222
|
-
flags?: string;
|
|
11223
|
-
}
|
|
11224
|
-
| string
|
|
11225
|
-
);
|
|
11226
|
-
|
|
11227
|
-
groups?: (
|
|
11228
|
-
| string
|
|
11229
|
-
| string[]
|
|
11230
|
-
| {
|
|
11231
|
-
newlinesBetween?: "ignore" | "always" | "never";
|
|
11232
|
-
}
|
|
11233
|
-
)[];
|
|
11234
|
-
};
|
|
11235
|
-
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType =
|
|
11236
|
-
| {
|
|
11237
|
-
[k: string]: unknown | undefined;
|
|
11238
|
-
}
|
|
11239
|
-
| _PerfectionistSortImports_IsLineLength;
|
|
11240
|
-
interface _PerfectionistSortImports_IsLineLength {
|
|
11241
|
-
type: "line-length";
|
|
11242
|
-
[k: string]: unknown | undefined;
|
|
11243
|
-
}
|
|
11244
11109
|
// ----- perfectionist/sort-interfaces -----
|
|
11245
11110
|
type PerfectionistSortInterfaces = {
|
|
11246
11111
|
fallbackSort?: {
|
|
@@ -12285,10 +12150,34 @@ type PerfectionistSortModules =
|
|
|
12285
12150
|
},
|
|
12286
12151
|
];
|
|
12287
12152
|
// ----- perfectionist/sort-named-exports -----
|
|
12288
|
-
type PerfectionistSortNamedExports =
|
|
12289
|
-
|
|
12290
|
-
|
|
12291
|
-
|
|
12153
|
+
type PerfectionistSortNamedExports = {
|
|
12154
|
+
fallbackSort?: {
|
|
12155
|
+
order?: "asc" | "desc";
|
|
12156
|
+
|
|
12157
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
12158
|
+
[k: string]: unknown | undefined;
|
|
12159
|
+
};
|
|
12160
|
+
|
|
12161
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
12162
|
+
|
|
12163
|
+
ignoreCase?: boolean;
|
|
12164
|
+
|
|
12165
|
+
alphabet?: string;
|
|
12166
|
+
|
|
12167
|
+
locales?: string | string[];
|
|
12168
|
+
|
|
12169
|
+
order?: "asc" | "desc";
|
|
12170
|
+
|
|
12171
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
12172
|
+
|
|
12173
|
+
groupKind?: "mixed" | "values-first" | "types-first";
|
|
12174
|
+
|
|
12175
|
+
ignoreAlias?: boolean;
|
|
12176
|
+
|
|
12177
|
+
customGroups?: (
|
|
12178
|
+
| {
|
|
12179
|
+
newlinesInside?: "always" | "never";
|
|
12180
|
+
|
|
12292
12181
|
fallbackSort?: {
|
|
12293
12182
|
order?: "asc" | "desc";
|
|
12294
12183
|
|
|
@@ -12301,13 +12190,54 @@ type PerfectionistSortNamedExports =
|
|
|
12301
12190
|
[k: string]: unknown | undefined;
|
|
12302
12191
|
};
|
|
12303
12192
|
|
|
12304
|
-
|
|
12193
|
+
groupName?: string;
|
|
12305
12194
|
|
|
12306
|
-
|
|
12195
|
+
order?: "asc" | "desc";
|
|
12307
12196
|
|
|
12308
|
-
|
|
12197
|
+
type?:
|
|
12198
|
+
| "alphabetical"
|
|
12199
|
+
| "natural"
|
|
12200
|
+
| "line-length"
|
|
12201
|
+
| "custom"
|
|
12202
|
+
| "unsorted";
|
|
12203
|
+
anyOf?: {
|
|
12204
|
+
modifiers?: ("value" | "type")[];
|
|
12309
12205
|
|
|
12310
|
-
|
|
12206
|
+
selector?: "export";
|
|
12207
|
+
|
|
12208
|
+
elementNamePattern?:
|
|
12209
|
+
| (
|
|
12210
|
+
| {
|
|
12211
|
+
pattern?: string;
|
|
12212
|
+
flags?: string;
|
|
12213
|
+
}
|
|
12214
|
+
| string
|
|
12215
|
+
)[]
|
|
12216
|
+
| (
|
|
12217
|
+
| {
|
|
12218
|
+
pattern?: string;
|
|
12219
|
+
flags?: string;
|
|
12220
|
+
}
|
|
12221
|
+
| string
|
|
12222
|
+
);
|
|
12223
|
+
}[];
|
|
12224
|
+
}
|
|
12225
|
+
| {
|
|
12226
|
+
newlinesInside?: "always" | "never";
|
|
12227
|
+
|
|
12228
|
+
fallbackSort?: {
|
|
12229
|
+
order?: "asc" | "desc";
|
|
12230
|
+
|
|
12231
|
+
type?:
|
|
12232
|
+
| "alphabetical"
|
|
12233
|
+
| "natural"
|
|
12234
|
+
| "line-length"
|
|
12235
|
+
| "custom"
|
|
12236
|
+
| "unsorted";
|
|
12237
|
+
[k: string]: unknown | undefined;
|
|
12238
|
+
};
|
|
12239
|
+
|
|
12240
|
+
groupName?: string;
|
|
12311
12241
|
|
|
12312
12242
|
order?: "asc" | "desc";
|
|
12313
12243
|
|
|
@@ -12318,11 +12248,48 @@ type PerfectionistSortNamedExports =
|
|
|
12318
12248
|
| "custom"
|
|
12319
12249
|
| "unsorted";
|
|
12320
12250
|
|
|
12321
|
-
|
|
12251
|
+
modifiers?: ("value" | "type")[];
|
|
12322
12252
|
|
|
12323
|
-
|
|
12253
|
+
selector?: "export";
|
|
12324
12254
|
|
|
12325
|
-
|
|
12255
|
+
elementNamePattern?:
|
|
12256
|
+
| (
|
|
12257
|
+
| {
|
|
12258
|
+
pattern?: string;
|
|
12259
|
+
flags?: string;
|
|
12260
|
+
}
|
|
12261
|
+
| string
|
|
12262
|
+
)[]
|
|
12263
|
+
| (
|
|
12264
|
+
| {
|
|
12265
|
+
pattern?: string;
|
|
12266
|
+
flags?: string;
|
|
12267
|
+
}
|
|
12268
|
+
| string
|
|
12269
|
+
);
|
|
12270
|
+
}
|
|
12271
|
+
)[];
|
|
12272
|
+
|
|
12273
|
+
partitionByComment?:
|
|
12274
|
+
| boolean
|
|
12275
|
+
| (
|
|
12276
|
+
| (
|
|
12277
|
+
| {
|
|
12278
|
+
pattern?: string;
|
|
12279
|
+
flags?: string;
|
|
12280
|
+
}
|
|
12281
|
+
| string
|
|
12282
|
+
)[]
|
|
12283
|
+
| (
|
|
12284
|
+
| {
|
|
12285
|
+
pattern?: string;
|
|
12286
|
+
flags?: string;
|
|
12287
|
+
}
|
|
12288
|
+
| string
|
|
12289
|
+
)
|
|
12290
|
+
)
|
|
12291
|
+
| {
|
|
12292
|
+
block?:
|
|
12326
12293
|
| boolean
|
|
12327
12294
|
| (
|
|
12328
12295
|
| (
|
|
@@ -12339,54 +12306,68 @@ type PerfectionistSortNamedExports =
|
|
|
12339
12306
|
}
|
|
12340
12307
|
| string
|
|
12341
12308
|
)
|
|
12342
|
-
)
|
|
12343
|
-
|
|
12344
|
-
|
|
12345
|
-
|
|
12346
|
-
|
|
12347
|
-
|
|
12348
|
-
|
|
12349
|
-
|
|
12350
|
-
|
|
12351
|
-
|
|
12352
|
-
|
|
12353
|
-
|
|
12354
|
-
|
|
12355
|
-
|
|
12356
|
-
|
|
12357
|
-
|
|
12358
|
-
|
|
12359
|
-
|
|
12360
|
-
|
|
12361
|
-
|
|
12362
|
-
line?:
|
|
12363
|
-
| boolean
|
|
12364
|
-
| (
|
|
12365
|
-
| (
|
|
12366
|
-
| {
|
|
12367
|
-
pattern?: string;
|
|
12368
|
-
flags?: string;
|
|
12369
|
-
}
|
|
12370
|
-
| string
|
|
12371
|
-
)[]
|
|
12372
|
-
| (
|
|
12373
|
-
| {
|
|
12374
|
-
pattern?: string;
|
|
12375
|
-
flags?: string;
|
|
12376
|
-
}
|
|
12377
|
-
| string
|
|
12378
|
-
)
|
|
12379
|
-
);
|
|
12380
|
-
};
|
|
12309
|
+
);
|
|
12310
|
+
line?:
|
|
12311
|
+
| boolean
|
|
12312
|
+
| (
|
|
12313
|
+
| (
|
|
12314
|
+
| {
|
|
12315
|
+
pattern?: string;
|
|
12316
|
+
flags?: string;
|
|
12317
|
+
}
|
|
12318
|
+
| string
|
|
12319
|
+
)[]
|
|
12320
|
+
| (
|
|
12321
|
+
| {
|
|
12322
|
+
pattern?: string;
|
|
12323
|
+
flags?: string;
|
|
12324
|
+
}
|
|
12325
|
+
| string
|
|
12326
|
+
)
|
|
12327
|
+
);
|
|
12328
|
+
};
|
|
12381
12329
|
|
|
12382
|
-
|
|
12383
|
-
|
|
12384
|
-
|
|
12330
|
+
partitionByNewLine?: boolean;
|
|
12331
|
+
|
|
12332
|
+
newlinesBetween?: "ignore" | "always" | "never";
|
|
12333
|
+
|
|
12334
|
+
groups?: (
|
|
12335
|
+
| string
|
|
12336
|
+
| string[]
|
|
12337
|
+
| {
|
|
12338
|
+
newlinesBetween?: "ignore" | "always" | "never";
|
|
12339
|
+
}
|
|
12340
|
+
)[];
|
|
12341
|
+
}[];
|
|
12385
12342
|
// ----- perfectionist/sort-named-imports -----
|
|
12386
|
-
type PerfectionistSortNamedImports =
|
|
12387
|
-
|
|
12388
|
-
|
|
12389
|
-
|
|
12343
|
+
type PerfectionistSortNamedImports = {
|
|
12344
|
+
fallbackSort?: {
|
|
12345
|
+
order?: "asc" | "desc";
|
|
12346
|
+
|
|
12347
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
12348
|
+
[k: string]: unknown | undefined;
|
|
12349
|
+
};
|
|
12350
|
+
|
|
12351
|
+
specialCharacters?: "remove" | "trim" | "keep";
|
|
12352
|
+
|
|
12353
|
+
ignoreCase?: boolean;
|
|
12354
|
+
|
|
12355
|
+
alphabet?: string;
|
|
12356
|
+
|
|
12357
|
+
locales?: string | string[];
|
|
12358
|
+
|
|
12359
|
+
order?: "asc" | "desc";
|
|
12360
|
+
|
|
12361
|
+
type?: "alphabetical" | "natural" | "line-length" | "custom" | "unsorted";
|
|
12362
|
+
|
|
12363
|
+
groupKind?: "mixed" | "values-first" | "types-first";
|
|
12364
|
+
|
|
12365
|
+
ignoreAlias?: boolean;
|
|
12366
|
+
|
|
12367
|
+
customGroups?: (
|
|
12368
|
+
| {
|
|
12369
|
+
newlinesInside?: "always" | "never";
|
|
12370
|
+
|
|
12390
12371
|
fallbackSort?: {
|
|
12391
12372
|
order?: "asc" | "desc";
|
|
12392
12373
|
|
|
@@ -12399,13 +12380,54 @@ type PerfectionistSortNamedImports =
|
|
|
12399
12380
|
[k: string]: unknown | undefined;
|
|
12400
12381
|
};
|
|
12401
12382
|
|
|
12402
|
-
|
|
12383
|
+
groupName?: string;
|
|
12403
12384
|
|
|
12404
|
-
|
|
12385
|
+
order?: "asc" | "desc";
|
|
12405
12386
|
|
|
12406
|
-
|
|
12387
|
+
type?:
|
|
12388
|
+
| "alphabetical"
|
|
12389
|
+
| "natural"
|
|
12390
|
+
| "line-length"
|
|
12391
|
+
| "custom"
|
|
12392
|
+
| "unsorted";
|
|
12393
|
+
anyOf?: {
|
|
12394
|
+
modifiers?: ("value" | "type")[];
|
|
12407
12395
|
|
|
12408
|
-
|
|
12396
|
+
selector?: "import";
|
|
12397
|
+
|
|
12398
|
+
elementNamePattern?:
|
|
12399
|
+
| (
|
|
12400
|
+
| {
|
|
12401
|
+
pattern?: string;
|
|
12402
|
+
flags?: string;
|
|
12403
|
+
}
|
|
12404
|
+
| string
|
|
12405
|
+
)[]
|
|
12406
|
+
| (
|
|
12407
|
+
| {
|
|
12408
|
+
pattern?: string;
|
|
12409
|
+
flags?: string;
|
|
12410
|
+
}
|
|
12411
|
+
| string
|
|
12412
|
+
);
|
|
12413
|
+
}[];
|
|
12414
|
+
}
|
|
12415
|
+
| {
|
|
12416
|
+
newlinesInside?: "always" | "never";
|
|
12417
|
+
|
|
12418
|
+
fallbackSort?: {
|
|
12419
|
+
order?: "asc" | "desc";
|
|
12420
|
+
|
|
12421
|
+
type?:
|
|
12422
|
+
| "alphabetical"
|
|
12423
|
+
| "natural"
|
|
12424
|
+
| "line-length"
|
|
12425
|
+
| "custom"
|
|
12426
|
+
| "unsorted";
|
|
12427
|
+
[k: string]: unknown | undefined;
|
|
12428
|
+
};
|
|
12429
|
+
|
|
12430
|
+
groupName?: string;
|
|
12409
12431
|
|
|
12410
12432
|
order?: "asc" | "desc";
|
|
12411
12433
|
|
|
@@ -12416,11 +12438,48 @@ type PerfectionistSortNamedImports =
|
|
|
12416
12438
|
| "custom"
|
|
12417
12439
|
| "unsorted";
|
|
12418
12440
|
|
|
12419
|
-
|
|
12441
|
+
modifiers?: ("value" | "type")[];
|
|
12420
12442
|
|
|
12421
|
-
|
|
12443
|
+
selector?: "import";
|
|
12422
12444
|
|
|
12423
|
-
|
|
12445
|
+
elementNamePattern?:
|
|
12446
|
+
| (
|
|
12447
|
+
| {
|
|
12448
|
+
pattern?: string;
|
|
12449
|
+
flags?: string;
|
|
12450
|
+
}
|
|
12451
|
+
| string
|
|
12452
|
+
)[]
|
|
12453
|
+
| (
|
|
12454
|
+
| {
|
|
12455
|
+
pattern?: string;
|
|
12456
|
+
flags?: string;
|
|
12457
|
+
}
|
|
12458
|
+
| string
|
|
12459
|
+
);
|
|
12460
|
+
}
|
|
12461
|
+
)[];
|
|
12462
|
+
|
|
12463
|
+
partitionByComment?:
|
|
12464
|
+
| boolean
|
|
12465
|
+
| (
|
|
12466
|
+
| (
|
|
12467
|
+
| {
|
|
12468
|
+
pattern?: string;
|
|
12469
|
+
flags?: string;
|
|
12470
|
+
}
|
|
12471
|
+
| string
|
|
12472
|
+
)[]
|
|
12473
|
+
| (
|
|
12474
|
+
| {
|
|
12475
|
+
pattern?: string;
|
|
12476
|
+
flags?: string;
|
|
12477
|
+
}
|
|
12478
|
+
| string
|
|
12479
|
+
)
|
|
12480
|
+
)
|
|
12481
|
+
| {
|
|
12482
|
+
block?:
|
|
12424
12483
|
| boolean
|
|
12425
12484
|
| (
|
|
12426
12485
|
| (
|
|
@@ -12437,49 +12496,39 @@ type PerfectionistSortNamedImports =
|
|
|
12437
12496
|
}
|
|
12438
12497
|
| string
|
|
12439
12498
|
)
|
|
12440
|
-
)
|
|
12441
|
-
|
|
12442
|
-
|
|
12443
|
-
|
|
12444
|
-
|
|
12445
|
-
|
|
12446
|
-
|
|
12447
|
-
|
|
12448
|
-
|
|
12449
|
-
|
|
12450
|
-
|
|
12451
|
-
|
|
12452
|
-
|
|
12453
|
-
|
|
12454
|
-
|
|
12455
|
-
|
|
12456
|
-
|
|
12457
|
-
|
|
12458
|
-
|
|
12459
|
-
|
|
12460
|
-
line?:
|
|
12461
|
-
| boolean
|
|
12462
|
-
| (
|
|
12463
|
-
| (
|
|
12464
|
-
| {
|
|
12465
|
-
pattern?: string;
|
|
12466
|
-
flags?: string;
|
|
12467
|
-
}
|
|
12468
|
-
| string
|
|
12469
|
-
)[]
|
|
12470
|
-
| (
|
|
12471
|
-
| {
|
|
12472
|
-
pattern?: string;
|
|
12473
|
-
flags?: string;
|
|
12474
|
-
}
|
|
12475
|
-
| string
|
|
12476
|
-
)
|
|
12477
|
-
);
|
|
12478
|
-
};
|
|
12499
|
+
);
|
|
12500
|
+
line?:
|
|
12501
|
+
| boolean
|
|
12502
|
+
| (
|
|
12503
|
+
| (
|
|
12504
|
+
| {
|
|
12505
|
+
pattern?: string;
|
|
12506
|
+
flags?: string;
|
|
12507
|
+
}
|
|
12508
|
+
| string
|
|
12509
|
+
)[]
|
|
12510
|
+
| (
|
|
12511
|
+
| {
|
|
12512
|
+
pattern?: string;
|
|
12513
|
+
flags?: string;
|
|
12514
|
+
}
|
|
12515
|
+
| string
|
|
12516
|
+
)
|
|
12517
|
+
);
|
|
12518
|
+
};
|
|
12479
12519
|
|
|
12480
|
-
|
|
12481
|
-
|
|
12482
|
-
|
|
12520
|
+
partitionByNewLine?: boolean;
|
|
12521
|
+
|
|
12522
|
+
newlinesBetween?: "ignore" | "always" | "never";
|
|
12523
|
+
|
|
12524
|
+
groups?: (
|
|
12525
|
+
| string
|
|
12526
|
+
| string[]
|
|
12527
|
+
| {
|
|
12528
|
+
newlinesBetween?: "ignore" | "always" | "never";
|
|
12529
|
+
}
|
|
12530
|
+
)[];
|
|
12531
|
+
}[];
|
|
12483
12532
|
// ----- perfectionist/sort-object-types -----
|
|
12484
12533
|
type PerfectionistSortObjectTypes = {
|
|
12485
12534
|
fallbackSort?: {
|
|
@@ -18737,233 +18786,233 @@ interface TypescriptRuleOptions {
|
|
|
18737
18786
|
>;
|
|
18738
18787
|
/**
|
|
18739
18788
|
* Enforce or ban the use of inline type-only markers for named imports.
|
|
18740
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18789
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/consistent-type-specifier-style.md
|
|
18741
18790
|
*/
|
|
18742
18791
|
"import/consistent-type-specifier-style"?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>;
|
|
18743
18792
|
/**
|
|
18744
18793
|
* Ensure a default export is present, given a default import.
|
|
18745
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18794
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/default.md
|
|
18746
18795
|
*/
|
|
18747
18796
|
"import/default"?: Linter.RuleEntry<[]>;
|
|
18748
18797
|
/**
|
|
18749
18798
|
* Enforce a leading comment with the webpackChunkName for dynamic imports.
|
|
18750
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18799
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/dynamic-import-chunkname.md
|
|
18751
18800
|
*/
|
|
18752
18801
|
"import/dynamic-import-chunkname"?: Linter.RuleEntry<ImportDynamicImportChunkname>;
|
|
18753
18802
|
/**
|
|
18754
18803
|
* Forbid any invalid exports, i.e. re-export of the same name.
|
|
18755
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18804
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/export.md
|
|
18756
18805
|
*/
|
|
18757
18806
|
"import/export"?: Linter.RuleEntry<[]>;
|
|
18758
18807
|
/**
|
|
18759
18808
|
* Ensure all exports appear after other statements.
|
|
18760
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18809
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/exports-last.md
|
|
18761
18810
|
*/
|
|
18762
18811
|
"import/exports-last"?: Linter.RuleEntry<[]>;
|
|
18763
18812
|
/**
|
|
18764
18813
|
* Ensure consistent use of file extension within the import path.
|
|
18765
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18814
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/extensions.md
|
|
18766
18815
|
*/
|
|
18767
18816
|
"import/extensions"?: Linter.RuleEntry<ImportExtensions>;
|
|
18768
18817
|
/**
|
|
18769
18818
|
* Ensure all imports appear before other statements.
|
|
18770
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18819
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/first.md
|
|
18771
18820
|
*/
|
|
18772
18821
|
"import/first"?: Linter.RuleEntry<ImportFirst>;
|
|
18773
18822
|
/**
|
|
18774
18823
|
* Prefer named exports to be grouped together in a single export declaration.
|
|
18775
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18824
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/group-exports.md
|
|
18776
18825
|
*/
|
|
18777
18826
|
"import/group-exports"?: Linter.RuleEntry<[]>;
|
|
18778
18827
|
/**
|
|
18779
18828
|
* Replaced by `import-x/first`.
|
|
18780
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18829
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/imports-first.md
|
|
18781
18830
|
* @deprecated
|
|
18782
18831
|
*/
|
|
18783
18832
|
"import/imports-first"?: Linter.RuleEntry<ImportImportsFirst>;
|
|
18784
18833
|
/**
|
|
18785
18834
|
* Enforce the maximum number of dependencies a module can have.
|
|
18786
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18835
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/max-dependencies.md
|
|
18787
18836
|
*/
|
|
18788
18837
|
"import/max-dependencies"?: Linter.RuleEntry<ImportMaxDependencies>;
|
|
18789
18838
|
/**
|
|
18790
18839
|
* Ensure named imports correspond to a named export in the remote file.
|
|
18791
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18840
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/named.md
|
|
18792
18841
|
*/
|
|
18793
18842
|
"import/named"?: Linter.RuleEntry<ImportNamed>;
|
|
18794
18843
|
/**
|
|
18795
18844
|
* Ensure imported namespaces contain dereferenced properties as they are dereferenced.
|
|
18796
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18845
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/namespace.md
|
|
18797
18846
|
*/
|
|
18798
18847
|
"import/namespace"?: Linter.RuleEntry<ImportNamespace>;
|
|
18799
18848
|
/**
|
|
18800
18849
|
* Enforce a newline after import statements.
|
|
18801
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18850
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/newline-after-import.md
|
|
18802
18851
|
*/
|
|
18803
18852
|
"import/newline-after-import"?: Linter.RuleEntry<ImportNewlineAfterImport>;
|
|
18804
18853
|
/**
|
|
18805
18854
|
* Forbid import of modules using absolute paths.
|
|
18806
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18855
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-absolute-path.md
|
|
18807
18856
|
*/
|
|
18808
18857
|
"import/no-absolute-path"?: Linter.RuleEntry<ImportNoAbsolutePath>;
|
|
18809
18858
|
/**
|
|
18810
18859
|
* Forbid AMD `require` and `define` calls.
|
|
18811
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18860
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-amd.md
|
|
18812
18861
|
*/
|
|
18813
18862
|
"import/no-amd"?: Linter.RuleEntry<[]>;
|
|
18814
18863
|
/**
|
|
18815
18864
|
* Forbid anonymous values as default exports.
|
|
18816
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18865
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-anonymous-default-export.md
|
|
18817
18866
|
*/
|
|
18818
18867
|
"import/no-anonymous-default-export"?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>;
|
|
18819
18868
|
/**
|
|
18820
18869
|
* Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
|
|
18821
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18870
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-commonjs.md
|
|
18822
18871
|
*/
|
|
18823
18872
|
"import/no-commonjs"?: Linter.RuleEntry<ImportNoCommonjs>;
|
|
18824
18873
|
/**
|
|
18825
18874
|
* Forbid a module from importing a module with a dependency path back to itself.
|
|
18826
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18875
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-cycle.md
|
|
18827
18876
|
*/
|
|
18828
18877
|
"import/no-cycle"?: Linter.RuleEntry<ImportNoCycle>;
|
|
18829
18878
|
/**
|
|
18830
18879
|
* Forbid default exports.
|
|
18831
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18880
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-default-export.md
|
|
18832
18881
|
*/
|
|
18833
18882
|
"import/no-default-export"?: Linter.RuleEntry<[]>;
|
|
18834
18883
|
/**
|
|
18835
18884
|
* Forbid imported names marked with `@deprecated` documentation tag.
|
|
18836
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18885
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-deprecated.md
|
|
18837
18886
|
*/
|
|
18838
18887
|
"import/no-deprecated"?: Linter.RuleEntry<[]>;
|
|
18839
18888
|
/**
|
|
18840
18889
|
* Forbid repeated import of the same module in multiple places.
|
|
18841
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18890
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-duplicates.md
|
|
18842
18891
|
*/
|
|
18843
18892
|
"import/no-duplicates"?: Linter.RuleEntry<ImportNoDuplicates>;
|
|
18844
18893
|
/**
|
|
18845
18894
|
* Forbid `require()` calls with expressions.
|
|
18846
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18895
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-dynamic-require.md
|
|
18847
18896
|
*/
|
|
18848
18897
|
"import/no-dynamic-require"?: Linter.RuleEntry<ImportNoDynamicRequire>;
|
|
18849
18898
|
/**
|
|
18850
18899
|
* Forbid empty named import blocks.
|
|
18851
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18900
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-empty-named-blocks.md
|
|
18852
18901
|
*/
|
|
18853
18902
|
"import/no-empty-named-blocks"?: Linter.RuleEntry<[]>;
|
|
18854
18903
|
/**
|
|
18855
18904
|
* Forbid the use of extraneous packages.
|
|
18856
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18905
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-extraneous-dependencies.md
|
|
18857
18906
|
*/
|
|
18858
18907
|
"import/no-extraneous-dependencies"?: Linter.RuleEntry<ImportNoExtraneousDependencies>;
|
|
18859
18908
|
/**
|
|
18860
18909
|
* Forbid import statements with CommonJS module.exports.
|
|
18861
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18910
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-import-module-exports.md
|
|
18862
18911
|
*/
|
|
18863
18912
|
"import/no-import-module-exports"?: Linter.RuleEntry<ImportNoImportModuleExports>;
|
|
18864
18913
|
/**
|
|
18865
18914
|
* Forbid importing the submodules of other modules.
|
|
18866
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18915
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-internal-modules.md
|
|
18867
18916
|
*/
|
|
18868
18917
|
"import/no-internal-modules"?: Linter.RuleEntry<ImportNoInternalModules>;
|
|
18869
18918
|
/**
|
|
18870
18919
|
* Forbid the use of mutable exports with `var` or `let`.
|
|
18871
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18920
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-mutable-exports.md
|
|
18872
18921
|
*/
|
|
18873
18922
|
"import/no-mutable-exports"?: Linter.RuleEntry<[]>;
|
|
18874
18923
|
/**
|
|
18875
18924
|
* Forbid use of exported name as identifier of default export.
|
|
18876
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18925
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-as-default.md
|
|
18877
18926
|
*/
|
|
18878
18927
|
"import/no-named-as-default"?: Linter.RuleEntry<[]>;
|
|
18879
18928
|
/**
|
|
18880
18929
|
* Forbid use of exported name as property of default export.
|
|
18881
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18930
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-as-default-member.md
|
|
18882
18931
|
*/
|
|
18883
18932
|
"import/no-named-as-default-member"?: Linter.RuleEntry<[]>;
|
|
18884
18933
|
/**
|
|
18885
18934
|
* Forbid named default exports.
|
|
18886
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18935
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-default.md
|
|
18887
18936
|
*/
|
|
18888
18937
|
"import/no-named-default"?: Linter.RuleEntry<[]>;
|
|
18889
18938
|
/**
|
|
18890
18939
|
* Forbid named exports.
|
|
18891
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18940
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-export.md
|
|
18892
18941
|
*/
|
|
18893
18942
|
"import/no-named-export"?: Linter.RuleEntry<[]>;
|
|
18894
18943
|
/**
|
|
18895
18944
|
* Forbid namespace (a.k.a. "wildcard" `*`) imports.
|
|
18896
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18945
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-namespace.md
|
|
18897
18946
|
*/
|
|
18898
18947
|
"import/no-namespace"?: Linter.RuleEntry<ImportNoNamespace>;
|
|
18899
18948
|
/**
|
|
18900
18949
|
* Forbid Node.js builtin modules.
|
|
18901
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18950
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-nodejs-modules.md
|
|
18902
18951
|
*/
|
|
18903
18952
|
"import/no-nodejs-modules"?: Linter.RuleEntry<ImportNoNodejsModules>;
|
|
18904
18953
|
/**
|
|
18905
18954
|
* Forbid importing packages through relative paths.
|
|
18906
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18955
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-relative-packages.md
|
|
18907
18956
|
*/
|
|
18908
18957
|
"import/no-relative-packages"?: Linter.RuleEntry<ImportNoRelativePackages>;
|
|
18909
18958
|
/**
|
|
18910
18959
|
* Forbid importing modules from parent directories.
|
|
18911
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18960
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-relative-parent-imports.md
|
|
18912
18961
|
*/
|
|
18913
18962
|
"import/no-relative-parent-imports"?: Linter.RuleEntry<ImportNoRelativeParentImports>;
|
|
18914
18963
|
/**
|
|
18915
18964
|
* Forbid importing a default export by a different name.
|
|
18916
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18965
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-rename-default.md
|
|
18917
18966
|
*/
|
|
18918
18967
|
"import/no-rename-default"?: Linter.RuleEntry<ImportNoRenameDefault>;
|
|
18919
18968
|
/**
|
|
18920
18969
|
* Enforce which files can be imported in a given folder.
|
|
18921
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18970
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-restricted-paths.md
|
|
18922
18971
|
*/
|
|
18923
18972
|
"import/no-restricted-paths"?: Linter.RuleEntry<ImportNoRestrictedPaths>;
|
|
18924
18973
|
/**
|
|
18925
18974
|
* Forbid a module from importing itself.
|
|
18926
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18975
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-self-import.md
|
|
18927
18976
|
*/
|
|
18928
18977
|
"import/no-self-import"?: Linter.RuleEntry<[]>;
|
|
18929
18978
|
/**
|
|
18930
18979
|
* Forbid unassigned imports.
|
|
18931
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18980
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-unassigned-import.md
|
|
18932
18981
|
*/
|
|
18933
18982
|
"import/no-unassigned-import"?: Linter.RuleEntry<ImportNoUnassignedImport>;
|
|
18934
18983
|
/**
|
|
18935
18984
|
* Ensure imports point to a file/module that can be resolved.
|
|
18936
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18985
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-unresolved.md
|
|
18937
18986
|
*/
|
|
18938
18987
|
"import/no-unresolved"?: Linter.RuleEntry<ImportNoUnresolved>;
|
|
18939
18988
|
/**
|
|
18940
18989
|
* Forbid modules without exports, or exports without matching import in another module.
|
|
18941
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18990
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-unused-modules.md
|
|
18942
18991
|
*/
|
|
18943
18992
|
"import/no-unused-modules"?: Linter.RuleEntry<ImportNoUnusedModules>;
|
|
18944
18993
|
/**
|
|
18945
18994
|
* Forbid unnecessary path segments in import and require statements.
|
|
18946
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
18995
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-useless-path-segments.md
|
|
18947
18996
|
*/
|
|
18948
18997
|
"import/no-useless-path-segments"?: Linter.RuleEntry<ImportNoUselessPathSegments>;
|
|
18949
18998
|
/**
|
|
18950
18999
|
* Forbid webpack loader syntax in imports.
|
|
18951
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
19000
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-webpack-loader-syntax.md
|
|
18952
19001
|
*/
|
|
18953
19002
|
"import/no-webpack-loader-syntax"?: Linter.RuleEntry<[]>;
|
|
18954
19003
|
/**
|
|
18955
19004
|
* Enforce a convention in module import order.
|
|
18956
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
19005
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/order.md
|
|
18957
19006
|
*/
|
|
18958
19007
|
"import/order"?: Linter.RuleEntry<ImportOrder>;
|
|
18959
19008
|
/**
|
|
18960
19009
|
* Prefer a default export if module exports a single name or multiple names.
|
|
18961
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
19010
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/prefer-default-export.md
|
|
18962
19011
|
*/
|
|
18963
19012
|
"import/prefer-default-export"?: Linter.RuleEntry<ImportPreferDefaultExport>;
|
|
18964
19013
|
/**
|
|
18965
19014
|
* Forbid potentially ambiguous parse goal (`script` vs. `module`).
|
|
18966
|
-
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.
|
|
19015
|
+
* @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/unambiguous.md
|
|
18967
19016
|
*/
|
|
18968
19017
|
"import/unambiguous"?: Linter.RuleEntry<[]>;
|
|
18969
19018
|
}
|
|
@@ -24308,6 +24357,7 @@ type YamlIndent =
|
|
|
24308
24357
|
{
|
|
24309
24358
|
indentBlockSequences?: boolean;
|
|
24310
24359
|
indicatorValueIndent?: number;
|
|
24360
|
+
alignMultilineFlowScalars?: boolean;
|
|
24311
24361
|
},
|
|
24312
24362
|
];
|
|
24313
24363
|
// ----- yaml/key-name-casing -----
|
|
@@ -24839,7 +24889,7 @@ declare function jsse(options?: OptionsConfig & TypedFlatConfigItem, ...userConf
|
|
|
24839
24889
|
declare function defineConfig(options?: OptionsConfig & TypedFlatConfigItem, ...userConfigs: (TypedFlatConfigItem | TypedFlatConfigItem[])[]): Promise<TypedFlatConfigItem[]>;
|
|
24840
24890
|
type DefineConfig = typeof defineConfig;
|
|
24841
24891
|
|
|
24842
|
-
declare const VERSION = "0.3.
|
|
24892
|
+
declare const VERSION = "0.3.6";
|
|
24843
24893
|
|
|
24844
24894
|
declare const GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
|
|
24845
24895
|
declare const GLOB_JS_SRC_EXT = "?([cm])js?(x)";
|