123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- {
- "extends": [
- "tslint-config-prettier"
- ],
- "rulesDirectory": [
- "node_modules/codelyzer",
- "node_modules/ng-alain-codelyzer"
- ],
- "rules": {
- "arrow-return-shorthand": true,
- "callable-types": true,
- "class-name": true,
- "comment-format": [
- false,
- "check-space"
- ],
- "curly": false,
- "forin": false,
- "import-blacklist": [true, "rxjs/Rx"],
- "interface-over-type-literal": true,
- "label-position": true,
- "max-line-length": [
- false,
- 140
- ],
- "member-access": false,
- "member-ordering": [
- false,
- {
- "order": [
- "static-field",
- "instance-field",
- "static-method",
- "instance-method"
- ]
- }
- ],
- "no-arg": true,
- "no-bitwise": false,
- "no-console": [
- true,
- "debug",
- "info",
- "time",
- "timeEnd",
- "trace"
- ],
- "no-construct": true,
- "no-debugger": true,
- "no-duplicate-super": true,
- "no-empty": false,
- "no-empty-interface": true,
- "no-eval": true,
- "no-inferrable-types": [
- true,
- "ignore-params"
- ],
- "no-misused-new": true,
- "no-non-null-assertion": false,
- "no-shadowed-variable": true,
- "no-string-literal": false,
- "no-string-throw": true,
- "no-switch-case-fall-through": true,
- "no-trailing-whitespace": false,
- "no-unnecessary-initializer": true,
- "no-unused-expression": true,
- "no-use-before-declare": true,
- "no-var-keyword": true,
- "object-literal-sort-keys": false,
- "prefer-const": false,
- "radix": true,
- "triple-equals": [
- true,
- "allow-null-check"
- ],
- "typeof-compare": true,
- "unified-signatures": true,
- "variable-name": false,
- "directive-selector": [
- true,
- "attribute",
- ["app", "passport", "exception", "layout", "header"],
- "camelCase"
- ],
- "component-selector": [
- true,
- "element",
- ["app", "passport", "exception", "layout", "header"],
- "kebab-case"
- ],
- "use-input-property-decorator": true,
- "use-output-property-decorator": true,
- "use-host-property-decorator": false,
- "no-input-rename": false,
- "no-output-rename": false,
- "use-life-cycle-interface": true,
- "use-pipe-transform-interface": true,
- "component-class-suffix": true,
- "directive-class-suffix": true,
- "no-access-missing-member": true,
- "templates-use-public": true,
- "invoke-injectable": true,
- "use-path-mapping": [true, ["@core/*", "@shared/*"]]
- }
- }
|