File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -11,4 +11,5 @@ build/docs
11
11
** /* .spec. *
12
12
coverage
13
13
.nyc_output
14
+ .idea
14
15
* .log
Original file line number Diff line number Diff line change 20
20
// "alwaysStrict": true /* Parse in strict mode and emit "use strict" for each source file. */,
21
21
22
22
/* Additional Checks */
23
- "noUnusedLocals" : true /* Report errors on unused locals. */ ,
24
- "noUnusedParameters" : true /* Report errors on unused parameters. */ ,
23
+ "noUnusedLocals" : false /* Report errors on unused locals. */ ,
24
+ "noUnusedParameters" : false /* Report errors on unused parameters. */ ,
25
25
"noImplicitReturns" : true /* Report error when not all code paths in function return a value. */ ,
26
26
"noFallthroughCasesInSwitch" : true /* Report errors for fallthrough cases in switch statement. */ ,
27
27
Original file line number Diff line number Diff line change 15
15
// Immutability rules
16
16
"readonly-keyword" : true ,
17
17
"readonly-array" : false ,
18
- "no-let" : true ,
18
+ "no-let" : false ,
19
19
"no-object-mutation" : true ,
20
- "no-delete" : true ,
20
+ "no-delete" : false ,
21
21
"no-method-signature" : true ,
22
22
23
23
// Functional style rules
24
- "no-this" : true ,
25
- "no-class" : true ,
24
+ "no-this" : false ,
25
+ "no-class" : false ,
26
26
"no-mixed-interface" : true ,
27
27
"no-expression-statement" : [
28
28
true ,
33
33
"no-unused-variable" : false ,
34
34
"no-unused-expression" : false ,
35
35
"no-unused-locals" : false ,
36
+ "no-console" : false ,
36
37
"prefer-for-of" : false
37
38
/* end tslint-immutable rules */
38
39
}
You can’t perform that action at this time.
0 commit comments