spectabular/tslint.json

33 lines
770 B
JSON
Raw Normal View History

2018-06-24 19:44:25 +00:00
{
"rules": {
"arrow-parens": true,
"indent": [true, "tabs"],
"jsdoc-format": true,
"no-trailing-whitespace": true,
"newline-per-chained-call": true,
"number-literal-format": true,
"one-line": [true, "check-catch", "check-finally", "check-else", "check-open-brace", "check-whitespace"],
"one-variable-per-declaration": [true, "ignore-for-loop"],
"ordered-imports": [
true,
{
"import-sources-order": "lowercase-last",
"named-imports-order": "lowercase-last"
}
],
"prefer-template": true,
"space-before-function-paren": false,
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-rest-spread",
"check-type-operator",
"check-preblock"
]
}
}