Commit 3def898 1 parent 8d920c8 commit 3def898 Copy full SHA for 3def898
File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -49,12 +49,12 @@ export interface IRunnerOptions {
49
49
/**
50
50
* Whether to return status code 0 even if there are lint errors.
51
51
*/
52
- force : boolean ;
52
+ force ? : boolean ;
53
53
54
54
/**
55
55
* Whether to fixes linting errors for select rules. This may overwrite linted files.
56
56
*/
57
- fix : boolean ;
57
+ fix ? : boolean ;
58
58
59
59
/**
60
60
* Output format.
@@ -69,7 +69,7 @@ export interface IRunnerOptions {
69
69
/**
70
70
* Whether to generate a tslint.json config file in the current working directory.
71
71
*/
72
- init : boolean ;
72
+ init ? : boolean ;
73
73
74
74
/**
75
75
* Output file path.
@@ -94,12 +94,12 @@ export interface IRunnerOptions {
94
94
/**
95
95
* Whether to enable type checking when linting a project.
96
96
*/
97
- typeCheck : boolean ;
97
+ typeCheck ? : boolean ;
98
98
99
99
/**
100
- * Current TSLint version.
100
+ * Whether to show the current TSLint version.
101
101
*/
102
- version : boolean ;
102
+ version ? : boolean ;
103
103
}
104
104
105
105
export class Runner {
You can’t perform that action at this time.
0 commit comments