Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

151 lines
3.1 KiB

{
"extends": ["tslint-immutable"],
"rulesDirectory": [
"node_modules/codelyzer",
"node_modules/rxjs-tslint"
],
"rules": {
"angular-whitespace": false,
"arrow-return-shorthand": true,
"class-name": true,
"comment-format": [
true,
"check-space"
],
"component-class-suffix": true,
"component-selector": [
true,
"element",
"sqx",
"kebab-case"
],
"curly": true,
"directive-class-suffix": true,
"directive-selector": [
true,
"attribute",
"sqx",
"camelCase"
],
"eofline": false,
"forin": true,
"indent": [
true,
"spaces"
],
"label-position": true,
"max-line-length": [
true,
240
],
"member-access": [
true,
"check-accessor"
],
"no-access-missing-member": false,
"no-arg": true,
"no-bitwise": true,
"no-consecutive-blank-lines": true,
"no-console": [
true,
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-forward-ref": false,
"no-inferrable-types": [
true,
"ignore-params"
],
"no-input-rename": false,
"no-output-rename": false,
"no-pipe-impure": true,
"no-shadowed-variable": true,
"no-string-literal": false,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unnecessary-callback-wrapper": true,
"no-unused-expression": true,
"no-use-before-declare": false,
"no-var-keyword": true,
"object-literal-shorthand": true,
"object-literal-sort-keys": false,
"one-line": [
true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"only-arrow-functions": [
true,
"allow-declarations"
],
"ordered-imports": [
true
],
"pipe-prefix": [
true,
"sqx"
],
"prefer-const": true,
"prefer-for-of": true,
"prefer-template": true,
"quotemark": [
true,
"single"
],
"radix": true,
"readonly-array": [
true,
"ignore-local"
],
"rxjs-collapse-imports": true,
"rxjs-proper-imports": true,
"semicolon": [
true,
"always"
],
"template-no-negated-async": true,
"template-use-track-by-function": false,
"trailing-comma": [
true,
{
"multiline": "never",
"singleline": "never"
}
],
"triple-equals": [
true,
"allow-null-check"
],
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"variable-name": false,
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
]
}
}