Skip to content

Commit aaf2d65

Browse files
fix: always refer to eslint-plugin-regexp (#1808)
## PR Checklist - [x] Addresses an existing open issue: fixes #1597 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview 💖
1 parent 768b37a commit aaf2d65

14 files changed

+25
-25
lines changed

docs/Options.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Alternately, you can bypass that prompt by providing any number of the following
9696
- `--exclude-lint-jsdoc`: Don't use eslint-plugin-jsdoc to enforce good practices around JSDoc comments.
9797
- `--exclude-lint-packages`: Don't add a pnpm dedupe workflow to ensure packages aren't duplicated unnecessarily.
9898
- `--exclude-lint-perfectionist`: Don't apply eslint-plugin-perfectionist to ensure imports, keys, and so on are in sorted order.
99-
- `--exclude-lint-regex`: Don't add eslint-plugin-regex to enforce good practices around regular expressions.
99+
- `--exclude-lint-regexp`: Don't add eslint-plugin-regexp to enforce good practices around regular expressions.
100100
- `--exclude-lint-strict`: Don't augment the recommended logical lint rules with typescript-eslint's strict config.
101101
- `--exclude-lint-stylistic`: Don't add stylistic rules such as typescript-eslint's stylistic config.
102102
- `--exclude-lint-spelling`: Don't add cspell to spell check against dictionaries of known words.

docs/Tooling.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This table summarizes each tooling piece and which base levels they're included
3131
| [Lint Package JSON](#lint-package-json) | `--exclude-lint-package-json` | | | 💯 |
3232
| [Lint Packages](#lint-packages) | `--exclude-lint-packages` | | | 💯 |
3333
| [Lint Perfectionist](#lint-perfectionist) | `--exclude-lint-perfectionist` | | | 💯 |
34-
| [Lint Regex](#lint-regex) | `--exclude-lint-regex` | | | 💯 |
34+
| [Lint Regexp](#lint-regexp) | `--exclude-lint-regexp` | | | 💯 |
3535
| [Lint Spelling](#lint-spelling) | `--exclude-lint-spelling` | | | 💯 |
3636
| [Lint Strict](#lint-strict) | `--exclude-lint-strict` | | | 💯 |
3737
| [Lint Stylistic](#lint-stylistic) | `--exclude-lint-stylistic` | | | 💯 |
@@ -226,7 +226,7 @@ Using the _"everything"_ level will gain you comprehensive, strict coverage of a
226226
- [Lint Package JSON](#lint-package-json)
227227
- [Lint Packages](#lint-packages)
228228
- [Lint Perfectionist](#lint-perfectionist)
229-
- [Lint Regex](#lint-regex)
229+
- [Lint Regexp](#lint-regexp)
230230
- [Lint Spelling](#lint-spelling)
231231
- [Lint Strict](#lint-strict)
232232
- [Lint Stylistic](#lint-stylistic)
@@ -277,9 +277,9 @@ pnpm lint:packages
277277
[`eslint-plugin-perfectionist`](https://eslint-plugin-perfectionist.azat.io): Lints for sorting properties, imports, etc.
278278
This plugin is quite particular -perfectionist, even- but all its rules include auto-fixers that can correct complaints for you.
279279

280-
### Lint Regex
280+
### Lint Regexp
281281

282-
[`eslint-plugin-regex`](https://github.com/gmullerb/eslint-plugin-regex): Detects issues with JavaScript regular expressions, such as potential exponential complexity.
282+
[`eslint-plugin-regexp`](https://github.com/ota-meshi/eslint-plugin-regexp): Detects issues with JavaScript regular expressions, such as potential exponential complexity.
283283

284284
### Lint Spelling
285285

src/bin/help.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ describe("logHelpText", () => {
249249
],
250250
[
251251
"
252-
--exclude-lint-regex: Don't add eslint-plugin-regex to enforce good practices around
252+
--exclude-lint-regexp: Don't add eslint-plugin-regexp to enforce good practices around
253253
regular expressions.",
254254
],
255255
[

src/shared/options/args.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ export const allArgOptions = {
131131
docsSection: "opt-out",
132132
type: "boolean",
133133
},
134-
"exclude-lint-regex": {
135-
description: `Don't add eslint-plugin-regex to enforce good practices around
134+
"exclude-lint-regexp": {
135+
description: `Don't add eslint-plugin-regexp to enforce good practices around
136136
regular expressions.`,
137137
docsSection: "opt-out",
138138
type: "boolean",

src/shared/options/augmentOptionsWithExcludes.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const optionsBase = {
3737
excludeLintPackageJson: undefined,
3838
excludeLintPackages: undefined,
3939
excludeLintPerfectionist: undefined,
40-
excludeLintRegex: undefined,
40+
excludeLintRegexp: undefined,
4141
excludeLintSpelling: undefined,
4242
excludeLintStrict: undefined,
4343
excludeLintStylistic: undefined,
@@ -96,7 +96,7 @@ describe("augmentOptionsWithExcludes", () => {
9696
excludeLintPackageJson: true,
9797
excludeLintPackages: true,
9898
excludeLintPerfectionist: true,
99-
excludeLintRegex: true,
99+
excludeLintRegexp: true,
100100
excludeLintSpelling: true,
101101
excludeLintStrict: true,
102102
excludeLintStylistic: true,
@@ -137,7 +137,7 @@ describe("augmentOptionsWithExcludes", () => {
137137
excludeLintPackageJson: true,
138138
excludeLintPackages: true,
139139
excludeLintPerfectionist: true,
140-
excludeLintRegex: true,
140+
excludeLintRegexp: true,
141141
excludeLintSpelling: true,
142142
excludeLintStrict: true,
143143
excludeLintStylistic: true,
@@ -165,7 +165,7 @@ describe("augmentOptionsWithExcludes", () => {
165165
excludeLintPackageJson: true,
166166
excludeLintPackages: true,
167167
excludeLintPerfectionist: true,
168-
excludeLintRegex: true,
168+
excludeLintRegexp: true,
169169
excludeLintSpelling: true,
170170
excludeLintStrict: true,
171171
excludeLintStylistic: true,

src/shared/options/exclusionKeys.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ export const exclusionDescriptions: Record<ExclusionKey, ExclusionDescription> =
7070
"Apply eslint-plugin-perfectionist to ensure imports, keys, and so on are in sorted order.",
7171
level: "common",
7272
},
73-
excludeLintRegex: {
74-
hint: "--exclude-lint-regex",
73+
excludeLintRegexp: {
74+
hint: "--exclude-lint-regexp",
7575
label:
76-
"Include eslint-plugin-regex to enforce good practices around regular expressions.",
76+
"Include eslint-plugin-regexp to enforce good practices around regular expressions.",
7777
level: "common",
7878
},
7979
excludeLintSpelling: {

src/shared/options/optionsSchema.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const optionsSchemaShape = {
3232
excludeLintPackageJson: z.boolean().optional(),
3333
excludeLintPackages: z.boolean().optional(),
3434
excludeLintPerfectionist: z.boolean().optional(),
35-
excludeLintRegex: z.boolean().optional(),
35+
excludeLintRegexp: z.boolean().optional(),
3636
excludeLintSpelling: z.boolean().optional(),
3737
excludeLintStrict: z.boolean().optional(),
3838
excludeLintStylistic: z.boolean().optional(),

src/shared/options/readOptions.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const emptyOptions = {
2525
excludeLintPackageJson: undefined,
2626
excludeLintPackages: undefined,
2727
excludeLintPerfectionist: undefined,
28-
excludeLintRegex: undefined,
28+
excludeLintRegexp: undefined,
2929
excludeLintSpelling: undefined,
3030
excludeLintStrict: undefined,
3131
excludeLintYml: undefined,
@@ -809,7 +809,7 @@ describe("readOptions", () => {
809809
"excludeLintPackageJson": undefined,
810810
"excludeLintPackages": undefined,
811811
"excludeLintPerfectionist": undefined,
812-
"excludeLintRegex": undefined,
812+
"excludeLintRegexp": undefined,
813813
"excludeLintSpelling": undefined,
814814
"excludeLintStrict": undefined,
815815
"excludeLintYml": undefined,

src/shared/options/readOptions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export async function readOptions(
7777
excludeLintPackageJson: values["exclude-lint-package-json"],
7878
excludeLintPackages: values["exclude-lint-packages"],
7979
excludeLintPerfectionist: values["exclude-lint-perfectionist"],
80-
excludeLintRegex: values["exclude-lint-regex"],
80+
excludeLintRegexp: values["exclude-lint-regexp"],
8181
excludeLintSpelling: values["exclude-lint-spelling"],
8282
excludeLintStrict: values["exclude-lint-strict"],
8383
excludeLintYml: values["exclude-lint-yml"],

src/shared/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export interface Options {
7171
excludeLintPackageJson?: boolean;
7272
excludeLintPackages?: boolean;
7373
excludeLintPerfectionist?: boolean;
74-
excludeLintRegex?: boolean;
74+
excludeLintRegexp?: boolean;
7575
excludeLintSpelling?: boolean;
7676
excludeLintStrict?: boolean;
7777
excludeLintStylistic?: boolean;

src/steps/finalizeDependencies.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export async function finalizeDependencies(options: Options) {
3838
...(options.excludeLintPerfectionist
3939
? []
4040
: ["eslint-plugin-perfectionist"]),
41-
...(options.excludeLintRegex ? [] : ["eslint-plugin-regexp"]),
41+
...(options.excludeLintRegexp ? [] : ["eslint-plugin-regexp"]),
4242
...(options.excludeLintSpelling ? [] : ["cspell"]),
4343
...(options.excludeLintYml ? [] : ["eslint-plugin-yml"]),
4444
...(options.excludeReleases

src/steps/writing/creation/createESLintConfig.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function fakeOptions(getExcludeValue: (exclusionName: string) => boolean) {
2626
"excludeLintPackageJson",
2727
"excludeLintPackages",
2828
"excludeLintPerfectionist",
29-
"excludeLintRegex",
29+
"excludeLintRegexp",
3030
"excludeLintSpelling",
3131
"excludeLintStrict",
3232
"excludeLintStylistic",

src/steps/writing/creation/createESLintConfig.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export async function createESLintConfig(options: Options) {
1717
`import packageJson from "eslint-plugin-package-json/configs/recommended";`,
1818
!options.excludeLintPerfectionist &&
1919
`import perfectionist from "eslint-plugin-perfectionist";`,
20-
!options.excludeLintRegex &&
20+
!options.excludeLintRegexp &&
2121
`import * as regexp from "eslint-plugin-regexp";`,
2222
!options.excludeLintYml && `import yml from "eslint-plugin-yml";`,
2323
`import tseslint from "typescript-eslint";`,
@@ -36,7 +36,7 @@ export async function createESLintConfig(options: Options) {
3636
!options.excludeLintPackageJson && ` packageJson,`,
3737
!options.excludeLintPerfectionist &&
3838
` perfectionist.configs["recommended-natural"],`,
39-
!options.excludeLintRegex && ` regexp.configs["flat/recommended"],`,
39+
!options.excludeLintRegexp && ` regexp.configs["flat/recommended"],`,
4040
].filter(Boolean);
4141

4242
const ignores = [

src/steps/writing/creation/dotVSCode.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function fakeOptions(
3131
"excludeLintPackageJson",
3232
"excludeLintPackages",
3333
"excludeLintPerfectionist",
34-
"excludeLintRegex",
34+
"excludeLintRegexp",
3535
"excludeLintSpelling",
3636
"excludeLintStrict",
3737
"excludeLintStylistic",

0 commit comments

Comments
 (0)