Update tslint.json

In a new version of tslint they has been changed the properties: 
no-trailing-comma
sort-object-literal-keys

to:

trailing-comma
object-literal-sort-keys
This commit is contained in:
jpicornellHB
2016-04-08 12:49:15 +02:00
parent fbff80b3e8
commit 8efde4028e

View File

@@ -27,7 +27,7 @@
"no-shadowed-variable": true, "no-shadowed-variable": true,
"no-string-literal": true, "no-string-literal": true,
"no-switch-case-fall-through": true, "no-switch-case-fall-through": true,
"no-trailing-comma": true, "trailing-comma": false,
"no-trailing-whitespace": true, "no-trailing-whitespace": true,
"no-unused-expression": true, "no-unused-expression": true,
"no-unused-variable": false, "no-unused-variable": false,
@@ -43,7 +43,7 @@
"quotemark": [true, "single"], "quotemark": [true, "single"],
"radix": true, "radix": true,
"semicolon": true, "semicolon": true,
"sort-object-literal-keys": false, "object-literal-sort-keys": false,
"triple-equals": [true, "allow-null-check"], "triple-equals": [true, "allow-null-check"],
"variable-name": false, "variable-name": false,
"whitespace": [true, "whitespace": [true,