TypeScript/tslint.json
2015-06-29 17:47:24 -07:00

27 lines
674 B
JSON

{
"rules": {
"class-name": true,
"comment-format": [true,
"check-space"
],
"curly": true,
"indent": true,
"one-line": [true,
"check-open-brace"
],
"no-empty": true,
"no-trailing-whitespace": true,
"no-unreachable": true,
"no-unused-variable": true,
"no-use-before-declare": true,
"no-var-keyword": true,
"quotemark": true,
"semicolon": true,
"whitespace": [true,
"check-branch",
"check-operator",
"check-separator",
"check-type"
]
}
}