diff --git a/.eslintrc.json b/.eslintrc.json index 86c5316..ae92b17 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -12,7 +12,8 @@ "rules": { "no-shadow": "warn", "no-magic-numbers": ["warn", { "ignore": [0, 1, -1] }], - "no-param-reassign": "warn" + "no-param-reassign": "warn", + "prefer-template": "warn" }, "overrides": [ { diff --git a/tslint.json b/tslint.json index ab7104b..34bac67 100644 --- a/tslint.json +++ b/tslint.json @@ -24,7 +24,8 @@ "no-magic-numbers": [true, -1, 0, 1], "no-parameter-reassignment": true, "arrow-return-shorthand": true, - "no-default-export": true + "no-default-export": true, + "prefer-template": true }, "jsRules": true }