Skip to content

Commit

Permalink
Loosened runner options (palantir#1786)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Goldberg authored and nchen63 committed Nov 25, 2016
1 parent 8d920c8 commit 3def898
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ export interface IRunnerOptions {
/**
* Whether to return status code 0 even if there are lint errors.
*/
force: boolean;
force?: boolean;

/**
* Whether to fixes linting errors for select rules. This may overwrite linted files.
*/
fix: boolean;
fix?: boolean;

/**
* Output format.
Expand All @@ -69,7 +69,7 @@ export interface IRunnerOptions {
/**
* Whether to generate a tslint.json config file in the current working directory.
*/
init: boolean;
init?: boolean;

/**
* Output file path.
Expand All @@ -94,12 +94,12 @@ export interface IRunnerOptions {
/**
* Whether to enable type checking when linting a project.
*/
typeCheck: boolean;
typeCheck?: boolean;

/**
* Current TSLint version.
* Whether to show the current TSLint version.
*/
version: boolean;
version?: boolean;
}

export class Runner {
Expand Down

0 comments on commit 3def898

Please sign in to comment.