Skip to content

Commit 89a4d1d

Browse files
author
Alexander Belov
committed
Fixes
1 parent 6026cfb commit 89a4d1d

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ build/docs
1111
**/*.spec.*
1212
coverage
1313
.nyc_output
14+
.idea
1415
*.log

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
// "alwaysStrict": true /* Parse in strict mode and emit "use strict" for each source file. */,
2121

2222
/* 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. */,
2525
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
2626
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */,
2727

tslint.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
// Immutability rules
1616
"readonly-keyword": true,
1717
"readonly-array": false,
18-
"no-let": true,
18+
"no-let": false,
1919
"no-object-mutation": true,
20-
"no-delete": true,
20+
"no-delete": false,
2121
"no-method-signature": true,
2222

2323
// Functional style rules
24-
"no-this": true,
25-
"no-class": true,
24+
"no-this": false,
25+
"no-class": false,
2626
"no-mixed-interface": true,
2727
"no-expression-statement": [
2828
true,
@@ -33,6 +33,7 @@
3333
"no-unused-variable": false,
3434
"no-unused-expression": false,
3535
"no-unused-locals": false,
36+
"no-console": false,
3637
"prefer-for-of": false
3738
/* end tslint-immutable rules */
3839
}

0 commit comments

Comments
 (0)