1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "extends": [
- "tslint:recommended"
- ],
- "rulesDirectory": [
- "node_modules/codelyzer"
- ],
- "rules": {
- "no-consecutive-blank-lines":false,
- "interface-name": [false, "always-prefix"],
- "member-access": false,
- "trailing-comma": [false, {"multiline": "always", "singleline": "never"}],
- "no-trailing-whitespace": [false, "ignore-comments", "ignore-template-strings","ignore-jsdoc"],
- "no-console": [true,
- "time",
- "timeEnd",
- "trace"
- ],
- "max-line-length": [
- true,
- 150
- ],
- "max-classes-per-file": [true, 3],
- "no-string-literal": false,
- "no-use-before-declare": true,
- "object-literal-sort-keys": false,
- "ordered-imports": false,
- "new-parens": false,
- "quotemark": [
- false,
- "single",
- "double",
- "avoid-escape"
- ],
- "array-type": [
- true,
- "generic"
- ],
- "variable-name": [
- true,
- "allow-leading-underscore",
- "allow-pascal-case",
- "ban-keywords",
- "check-format"
- ],
- "one-line": [true,
- "check-open-brace",
- "check-whitespace"
- ],
- "arrow-parens": true,
- "prefer-const": false,
- "prefer-for-of": false,
- "forin": false,
- "angular-whitespace": [true, "check-semicolon"],
- "one-variable-per-declaration": [false, "ignore-for-loop"],
- "banana-in-box": true,
- "templates-no-negated-async": false,
- "object-literal-shorthand": false,
- "use-input-property-decorator": true,
- "use-output-property-decorator": true,
- "use-host-property-decorator": true,
- "no-attribute-parameter-decorator": true,
- "no-input-rename": false,
- "no-output-rename": false,
- "no-output-on-prefix": true,
- "no-forward-ref": true,
- "use-view-encapsulation": false,
- "use-life-cycle-interface": false,
- "use-pipe-transform-interface": true,
- "pipe-naming": [true, "camelCase"],
- "component-class-suffix": [true, "Component", "Page", "Cmp"],
- "directive-class-suffix": true,
- "pipe-impure": true
- }
- }
|