TypeScript/tslint.json

24 lines
547 B
JSON
Raw Normal View History

2015-06-26 01:24:02 +02:00
{
"rules": {
"class-name": true,
"comment-format": [true,
"check-space"
],
"indent": true,
2015-06-30 02:47:24 +02:00
"one-line": [true,
"check-open-brace"
],
2015-06-26 01:24:02 +02:00
"no-unreachable": true,
"no-use-before-declare": true,
"no-var-keyword": true,
"quotemark": true,
"semicolon": true,
"whitespace": [true,
"check-branch",
"check-operator",
"check-separator",
"check-type"
]
}
}