File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -153,14 +153,6 @@ export default class Question {
153
153
154
154
protected filter ( input : string | string [ ] ) : string {
155
155
let toCased ;
156
-
157
- // array
158
- // - multipleSelectDefaultDelimiter
159
- // - no multipleSelectDefaultDelimiter
160
- // string + multipleValueDelimiters
161
- // - split
162
- // - not split
163
- // string
164
156
if ( Array . isArray ( input ) ) {
165
157
toCased = this . caseFn ( input , this . multipleSelectDefaultDelimiter ) ;
166
158
} else if ( this . multipleValueDelimiters ) {
Original file line number Diff line number Diff line change @@ -60,9 +60,9 @@ export default async function load(
60
60
parserPreset : config . parserPreset ,
61
61
} ) ;
62
62
63
- const preset = ( pickConfig (
63
+ const preset = pickConfig (
64
64
mergeWith ( extended , config , w )
65
- ) as unknown ) as UserPreset ;
65
+ ) as unknown as UserPreset ;
66
66
preset . plugins = { } ;
67
67
68
68
// TODO: check if this is still necessary with the new factory based conventional changelog parsers
You can’t perform that action at this time.
0 commit comments