UNPKG

477 BJSONView Raw
1{
2 "extends": "./tslint-immutable.json",
3 "rules": {
4 "no-var-keyword": true,
5 "no-parameter-reassignment": true,
6 "typedef": [true, "call-signature"],
7
8 "readonly-keyword": true,
9 "readonly-array": true,
10 "no-let": true,
11 "no-object-mutation": true,
12 "no-delete": true,
13 "no-method-signature": true,
14
15 "no-this": true,
16 "no-class": true,
17 "no-mixed-interface": true,
18 "no-expression-statement": true,
19 "no-if-statement": true
20 }
21}