Skip to content

Commit f9b26d2

Browse files
author
Alexander Belov
committed
Fixes
1 parent 7f8198a commit f9b26d2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tslint.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,26 @@
99
/* tslint-immutable rules */
1010
// Recommended built-in rules
1111
"no-var-keyword": true,
12-
"no-parameter-reassignment": true,
12+
"no-parameter-reassignment": false,
1313
"typedef": [true, "call-signature"],
1414

1515
// Immutability rules
16-
"readonly-keyword": true,
16+
"readonly-keyword": false,
1717
"readonly-array": false,
1818
"no-let": false,
19-
"no-object-mutation": true,
19+
"no-object-mutation": false,
2020
"no-delete": false,
21-
"no-method-signature": true,
21+
"no-method-signature": false,
2222

2323
// Functional style rules
2424
"no-this": false,
2525
"no-class": false,
26-
"no-mixed-interface": true,
26+
"no-mixed-interface": false,
2727
"no-expression-statement": [
28-
true,
28+
false,
2929
{ "ignore-prefix": ["console.", "process.exit"] }
3030
],
31-
"no-if-statement": true,
31+
"no-if-statement": false,
3232
"no-bitwise": false,
3333
"no-unused-variable": false,
3434
"no-unused-expression": false,

0 commit comments

Comments
 (0)