Update tslint.json for latest versions of tslint

Enforces spaces and double quotes again, and enforces no space before the colon for type definitions.
This commit is contained in:
Wesley Wigham 2015-07-23 00:05:53 -07:00
parent 98d7474151
commit 5ef2b47f7a

View file

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