Skip to content

Commit

Permalink
Updating for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Garethp committed Aug 15, 2020
1 parent fba5345 commit ff1bf9b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion packages/core/src/StrykerCli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@ export default class StrykerCli {
.option('--transpilers <listOfTranspilers>', 'A comma separated list of transpilers to use.', list)
.option('--reporters <name>', 'A comma separated list of the names of the reporter(s) you want to use', list)
.option('--plugins <listOfPlugins>', 'A list of plugins you want stryker to load (`require`).', list)
.option('--appendPlugins <listOfPlugions>', 'A list of plugins you want stryker to load (`require`) without overwriting the plugins in the config file', list)
.option(
'--appendPlugins <listOfPlugions>',
'A list of plugins you want stryker to load (`require`) without overwriting the plugins in the config file',
list
)
.option('--timeoutMS <number>', 'Tweak the absolute timeout used to wait for a test runner to complete', parseInt)
.option('--timeoutFactor <number>', 'Tweak the standard deviation relative to the normal test run of a mutated test', parseFloat)
.option('--maxConcurrentTestRunners <n>', 'Set the number of max concurrent test runner to spawn (default: cpuCount)', parseInt)
Expand Down
2 changes: 1 addition & 1 deletion packages/test-helpers/src/factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ export const mutatorDescriptor = factoryMethod<MutatorDescriptor>(() => ({
excludedMutations: [],
name: 'fooMutator',
plugins: null,
appendPlugins: null
appendPlugins: null,
}));

export const ALL_REPORTER_EVENTS: Array<keyof Reporter> = [
Expand Down

0 comments on commit ff1bf9b

Please sign in to comment.