diff --git a/packages/@angular/cli/blueprints/ng/files/tslint.json b/packages/@angular/cli/blueprints/ng/files/tslint.json index 0db008138e64..ac0980c3cf23 100644 --- a/packages/@angular/cli/blueprints/ng/files/tslint.json +++ b/packages/@angular/cli/blueprints/ng/files/tslint.json @@ -3,6 +3,7 @@ "node_modules/codelyzer" ], "rules": { + "arrow-return-shorthand": true, "callable-types": true, "class-name": true, "comment-format": [ @@ -42,15 +43,19 @@ ], "no-construct": true, "no-debugger": true, + "no-duplicate-super": true, "no-empty": false, "no-empty-interface": true, "no-eval": true, "no-inferrable-types": [true, "ignore-params"], + "no-misused-new": true, + "no-non-null-assertion": true, "no-shadowed-variable": true, "no-string-literal": false, "no-string-throw": true, "no-switch-case-fall-through": true, "no-trailing-whitespace": true, + "no-unnecessary-initializer": true, "no-unused-expression": true, "no-use-before-declare": true, "no-var-keyword": true,