Merge pull request #3995 from weswigham/patch-2

Update tslint.json for latest versions of tslint
This commit is contained in:
Mohamed Hegazy 2015-08-04 11:13:57 -07:00
commit bb3fb7d98b

View file

@ -4,20 +4,31 @@
"comment-format": [true, "comment-format": [true,
"check-space" "check-space"
], ],
"indent": true, "indent": [true,
"spaces"
],
"one-line": [true, "one-line": [true,
"check-open-brace" "check-open-brace"
], ],
"no-unreachable": true, "no-unreachable": true,
"no-use-before-declare": true, "no-use-before-declare": true,
"no-var-keyword": true, "no-var-keyword": true,
"quotemark": true, "quotemark": [true,
"double"
],
"semicolon": true, "semicolon": true,
"whitespace": [true, "whitespace": [true,
"check-branch", "check-branch",
"check-operator", "check-operator",
"check-separator", "check-separator",
"check-type" "check-type"
] ],
"typedef-whitespace": [true, {
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}]
} }
} }