@@ -3,150 +3,12 @@ import chalk from "chalk";
3
3
4
4
import { filterPromptCancel } from "../prompts.js" ;
5
5
import { Options , OptionsBase } from "../types.js" ;
6
-
7
- interface ExclusionDescription {
8
- hint : string ;
9
- label : string ;
10
- uncommon ?: true ;
11
- }
12
-
13
- export type ExclusionKey = keyof Options & `exclude${string } `;
14
-
15
- const exclusionDescriptions : Record < ExclusionKey , ExclusionDescription > = {
16
- excludeAllContributors : {
17
- hint : "--exclude-all-contributors" ,
18
- label :
19
- "Add all-contributors to track contributions and display them in a README.md table." ,
20
- } ,
21
- excludeCompliance : {
22
- hint : "--exclude-compliance" ,
23
- label :
24
- "Add a GitHub Actions workflow to verify that PRs match an expected format." ,
25
- uncommon : true ,
26
- } ,
27
- excludeLintDeprecation : {
28
- hint : "--exclude-lint-deprecation" ,
29
- label :
30
- "Include an eslint-plugin-deprecation to reports on usage of code marked as @deprecated." ,
31
- uncommon : true ,
32
- } ,
33
- excludeLintESLint : {
34
- hint : "--exclude-lint-eslint" ,
35
- label :
36
- "Include eslint-plugin-eslint-comment to enforce good practices around ESLint comment directives." ,
37
- uncommon : true ,
38
- } ,
39
- excludeLintJSDoc : {
40
- hint : "--exclude-lint-jsdoc" ,
41
- label :
42
- "Include eslint-plugin-jsdoc to enforce good practices around JSDoc comments." ,
43
- uncommon : true ,
44
- } ,
45
- excludeLintJson : {
46
- hint : "--exclude-lint-json" ,
47
- label : "Apply linting and sorting to *.json and *.jsonc files." ,
48
- uncommon : true ,
49
- } ,
50
- excludeLintKnip : {
51
- hint : "--exclude-lint-knip" ,
52
- label : "Add Knip to detect unused files, dependencies, and code exports." ,
53
- } ,
54
- excludeLintMd : {
55
- hint : "--exclude-lint-md" ,
56
- label : "Apply linting to *.md files." ,
57
- uncommon : true ,
58
- } ,
59
- excludeLintPackageJson : {
60
- hint : "--exclude-lint-package-json" ,
61
- label :
62
- "Add eslint-plugin-package-json to lint for package.json correctness." ,
63
- uncommon : true ,
64
- } ,
65
- excludeLintPackages : {
66
- hint : "--exclude-lint-packages" ,
67
- label :
68
- "Add a pnpm dedupe workflow to ensure packages aren't duplicated unnecessarily." ,
69
- uncommon : true ,
70
- } ,
71
- excludeLintPerfectionist : {
72
- hint : "--exclude-lint-perfectionist" ,
73
- label :
74
- "Apply eslint-plugin-perfectionist to ensure imports, keys, and so on are in sorted order." ,
75
- uncommon : true ,
76
- } ,
77
- excludeLintRegex : {
78
- hint : "--exclude-lint-regex" ,
79
- label :
80
- "Include eslint-plugin-regex to enforce good practices around regular expressions." ,
81
- uncommon : true ,
82
- } ,
83
- excludeLintSpelling : {
84
- hint : "--exclude-lint-spelling" ,
85
- label : "Add cspell to spell check against dictionaries of known words." ,
86
- uncommon : true ,
87
- } ,
88
- excludeLintStrict : {
89
- hint : "--exclude-lint-strict" ,
90
- label :
91
- "Include strict logical lint rules such as typescript-eslint's strict config. " ,
92
- uncommon : true ,
93
- } ,
94
- excludeLintStylistic : {
95
- hint : "--exclude-lint-stylistic" ,
96
- label :
97
- "Include stylistic lint rules such as typescript-eslint's stylistic config." ,
98
- uncommon : true ,
99
- } ,
100
- excludeLintYml : {
101
- hint : "--exclude-lint-yml" ,
102
- label : "Apply linting and sorting to *.yaml and *.yml files." ,
103
- uncommon : true ,
104
- } ,
105
- excludeReleases : {
106
- hint : "--exclude-releases" ,
107
- label :
108
- "Add release-it to generate changelogs, package bumps, and publishes based on conventional commits." ,
109
- } ,
110
- excludeRenovate : {
111
- hint : "--exclude-renovate" ,
112
- label : "Add a Renovate config to keep dependencies up-to-date with PRs." ,
113
- } ,
114
- excludeTests : {
115
- hint : "--exclude-tests" ,
116
- label :
117
- "Add Vitest tooling for fast unit tests, configured with coverage tracking." ,
118
- } ,
119
- } ;
120
-
121
- const exclusionKeys = Object . keys ( exclusionDescriptions ) as ExclusionKey [ ] ;
122
-
123
- export function getExclusions (
124
- options : Partial < Options > ,
125
- base ?: OptionsBase ,
126
- ) : Partial < Options > {
127
- switch ( base ) {
128
- case "common" :
129
- return {
130
- ...Object . fromEntries (
131
- exclusionKeys
132
- . filter ( ( exclusion ) => exclusionDescriptions [ exclusion ] . uncommon )
133
- . map ( ( exclusion ) => [ exclusion , options [ exclusion ] ?? true ] ) ,
134
- ) ,
135
- } ;
136
- case "minimum" :
137
- return {
138
- ...Object . fromEntries (
139
- exclusionKeys . map ( ( exclusion ) => [
140
- exclusion ,
141
- options [ exclusion ] ?? true ,
142
- ] ) ,
143
- ) ,
144
- } ;
145
- // We only really care about exclusions on the common and minimum bases
146
- default :
147
- return { } ;
148
- }
149
- }
6
+ import {
7
+ ExclusionKey ,
8
+ exclusionDescriptions ,
9
+ exclusionKeys ,
10
+ getExclusions ,
11
+ } from "./exclusionKeys.js" ;
150
12
151
13
export async function augmentOptionsWithExcludes (
152
14
options : Options ,
@@ -206,6 +68,7 @@ export async function augmentOptionsWithExcludes(
206
68
case "everything" :
207
69
return {
208
70
...options ,
71
+ base,
209
72
...getExclusions ( options , base ) ,
210
73
} ;
211
74
case "prompt" :
@@ -228,6 +91,7 @@ export async function augmentOptionsWithExcludes(
228
91
229
92
return {
230
93
...options ,
94
+ base,
231
95
...Object . fromEntries (
232
96
exclusionKeys . map (
233
97
( exclusionKey ) =>
0 commit comments