spectabular/tslint.json

31 lines
867 B
JSON

{
"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,
"quotemark": [true, "double", "avoid-escape"],
"semicolon": true,
"space-before-function-paren": false,
"triple-equals": [true, "allow-null-check"],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-rest-spread",
"check-type-operator",
"check-preblock"
]
}
}