139 lines
3.0 KiB
JSON
139 lines
3.0 KiB
JSON
{
|
|
"extends": "tslint:recommended",
|
|
"rulesDirectory": [
|
|
"codelyzer"
|
|
],
|
|
"rules": {
|
|
"align": {
|
|
"options": [
|
|
"parameters",
|
|
"statements"
|
|
]
|
|
},
|
|
"array-type": false,
|
|
"arrow-parens": false,
|
|
"arrow-return-shorthand": true,
|
|
"deprecation": {
|
|
"severity": "warn"
|
|
},
|
|
"curly": true,
|
|
"import-blacklist": [
|
|
true,
|
|
"rxjs/Rx"
|
|
],
|
|
"interface-name": false,
|
|
"eofline": true,
|
|
"max-classes-per-file": false,
|
|
"import-spacing": true,
|
|
"indent": {
|
|
"options": [
|
|
"spaces"
|
|
]
|
|
},
|
|
"max-line-length": [
|
|
true,
|
|
140
|
|
],
|
|
"member-access": false,
|
|
"member-ordering": [
|
|
true,
|
|
{
|
|
"order": [
|
|
"static-field",
|
|
"instance-field",
|
|
"static-method",
|
|
"instance-method"
|
|
]
|
|
}
|
|
],
|
|
"no-consecutive-blank-lines": false,
|
|
"no-console": [
|
|
true,
|
|
"debug",
|
|
"info",
|
|
"time",
|
|
"timeEnd",
|
|
"trace"
|
|
],
|
|
"no-empty": false,
|
|
"no-inferrable-types": [
|
|
true,
|
|
"ignore-params"
|
|
],
|
|
"no-non-null-assertion": true,
|
|
"no-redundant-jsdoc": true,
|
|
"no-switch-case-fall-through": true,
|
|
"no-var-requires": false,
|
|
"object-literal-key-quotes": [
|
|
true,
|
|
"as-needed"
|
|
],
|
|
"object-literal-sort-keys": false,
|
|
"ordered-imports": false,
|
|
"quotemark": [
|
|
true,
|
|
"single"
|
|
],
|
|
"trailing-comma": false,
|
|
"no-output-on-prefix": true,
|
|
"no-inputs-metadata-property": true,
|
|
"no-outputs-metadata-property": true,
|
|
"no-host-metadata-property": true,
|
|
"no-input-rename": true,
|
|
"no-output-rename": true,
|
|
"use-lifecycle-interface": true,
|
|
"semicolon": {
|
|
"options": [
|
|
"always"
|
|
]
|
|
},
|
|
"space-before-function-paren": {
|
|
"options": {
|
|
"anonymous": "never",
|
|
"asyncArrow": "always",
|
|
"constructor": "never",
|
|
"method": "never",
|
|
"named": "never"
|
|
}
|
|
},
|
|
"use-pipe-transform-interface": true,
|
|
"typedef-whitespace": {
|
|
"options": [
|
|
{
|
|
"call-signature": "nospace",
|
|
"index-signature": "nospace",
|
|
"parameter": "nospace",
|
|
"property-declaration": "nospace",
|
|
"variable-declaration": "nospace"
|
|
},
|
|
{
|
|
"call-signature": "onespace",
|
|
"index-signature": "onespace",
|
|
"parameter": "onespace",
|
|
"property-declaration": "onespace",
|
|
"variable-declaration": "onespace"
|
|
}
|
|
]
|
|
},
|
|
"component-class-suffix": true,
|
|
"directive-class-suffix": true,
|
|
"variable-name": {
|
|
"options": [
|
|
"ban-keywords",
|
|
"check-format",
|
|
"allow-pascal-case"
|
|
]
|
|
},
|
|
"whitespace": {
|
|
"options": [
|
|
"check-branch",
|
|
"check-decl",
|
|
"check-operator",
|
|
"check-separator",
|
|
"check-type",
|
|
"check-typecast"
|
|
]
|
|
}
|
|
}
|
|
}
|