TypeScript/tslint.json

52 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2015-06-26 01:24:02 +02:00
{
"rules": {
"class-name": true,
"comment-format": [true,
"check-space"
],
"indent": [true,
"spaces"
],
"linebreak-style": [true, "CRLF"],
2015-06-30 02:47:24 +02:00
"one-line": [true,
2015-08-26 03:09:32 +02:00
"check-open-brace",
"check-whitespace"
2015-06-30 02:47:24 +02:00
],
2015-06-26 01:24:02 +02:00
"no-var-keyword": true,
"quotemark": [true,
"double",
"avoid-escape"
],
2015-06-26 01:24:02 +02:00
"semicolon": true,
"whitespace": [true,
"check-branch",
"check-operator",
"check-separator",
2015-08-26 03:09:32 +02:00
"check-type",
"check-module"
],
"typedef-whitespace": [true, {
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
2015-08-26 03:09:32 +02:00
}],
2016-08-15 21:03:39 +02:00
"next-line": [true,
2015-08-26 03:09:32 +02:00
"check-catch",
"check-else"
],
"no-internal-module": true,
"no-trailing-whitespace": true,
"no-inferrable-types": true,
"no-null-keyword": true,
"no-unused-variable": true,
"boolean-trivia": true,
2015-11-04 20:02:43 +01:00
"type-operator-spacing": true,
"prefer-const": true,
2016-06-23 21:32:14 +02:00
"no-increment-decrement": true,
"object-literal-surrounding-space": true,
"no-type-assertion-whitespace": true
2015-06-26 01:24:02 +02:00
}
}