From 57b8e064a8ff842ba65d8a73f2d23e83476224bc Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Sun, 2 Sep 2018 13:43:37 -0700 Subject: [PATCH] Move tslint prefer-const with the other core rules The ones at the bottom are separated as they're part of tslint-consistent-codestyle --- tslint.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tslint.json b/tslint.json index 40e26fcf7d..d2daef0925 100644 --- a/tslint.json +++ b/tslint.json @@ -39,6 +39,7 @@ "one-variable-per-declaration": true, "no-unsafe-finally": true, "no-var-keyword": true, + "prefer-const": true, "quotemark": [ true, "single" @@ -107,7 +108,6 @@ }, "prefer-const-enum": [ true - ], - "prefer-const": true + ] } }