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.
70 lines
2.2 KiB
70 lines
2.2 KiB
{
|
|
"extends": ["tslint:recommended", "tslint-config-prettier"],
|
|
"rulesDirectory": ["codelyzer"],
|
|
"rules": {
|
|
"array-type": false,
|
|
"arrow-parens": false,
|
|
"deprecation": {
|
|
"severity": "warn"
|
|
},
|
|
"import-blacklist": [true, "rxjs/Rx"],
|
|
"max-line-length": [true, 120],
|
|
"member-access": false,
|
|
"member-ordering": [
|
|
true,
|
|
{
|
|
"order": [
|
|
"public-static-field",
|
|
"protected-static-field",
|
|
"private-static-field",
|
|
"public-instance-field",
|
|
"protected-instance-field",
|
|
"private-instance-field",
|
|
"public-static-method",
|
|
"protected-static-method",
|
|
"private-static-method",
|
|
"constructor",
|
|
"public-instance-method",
|
|
"protected-instance-method",
|
|
"private-instance-method"
|
|
]
|
|
}
|
|
],
|
|
"interface-name": false,
|
|
"max-classes-per-file": false,
|
|
"no-consecutive-blank-lines": false,
|
|
"no-console": [true, "debug", "time", "timeEnd", "trace"],
|
|
"no-duplicate-variable": [true, "check-parameters"],
|
|
"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-unnecessary-initializer": true,
|
|
"object-literal-sort-keys": false,
|
|
"quotemark": [true, "single"],
|
|
"typedef": [true, "parameter", "property-declaration"],
|
|
"variable-name": false,
|
|
"no-var-requires": false,
|
|
"object-literal-key-quotes": false,
|
|
"ordered-imports": false,
|
|
"trailing-comma": false,
|
|
"no-conflicting-lifecycle": true,
|
|
"no-output-native": true,
|
|
"directive-selector": [true, "attribute", "app", "camelCase"],
|
|
"component-selector": [true, "element", "page", "app", "kebab-case"],
|
|
"template-banana-in-box": true,
|
|
"template-no-negated-async": true,
|
|
"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,
|
|
"use-pipe-transform-interface": true,
|
|
"component-class-suffix": true,
|
|
"contextual-lifecycle": true,
|
|
"directive-class-suffix": true
|
|
}
|
|
}
|
|
|