From 102d05e12ed8332b7cb55848ab4a213265383da7 Mon Sep 17 00:00:00 2001 From: Mark Andrews <20metresbelow@gmail.com> Date: Sat, 20 Feb 2016 21:43:03 +1030 Subject: [PATCH] Updated tslint.json to use trailing-comma instead of deprecated no-trailing-comma rule. Fixes #343. --- tslint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tslint.json b/tslint.json index b44b715d64..cd9b031096 100644 --- a/tslint.json +++ b/tslint.json @@ -20,7 +20,7 @@ "no-duplicate-variable": true, "no-empty": false, "no-eval": true, - "no-trailing-comma": true, + "trailing-comma": true, "no-trailing-whitespace": true, "no-unused-expression": true, "no-unused-variable": false,