mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
build: update tslint config
This commit is contained in:
parent
2ed871ff20
commit
3561acca02
3 changed files with 3543 additions and 1248 deletions
4597
package-lock.json
generated
4597
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -91,7 +91,6 @@
|
|||
"stylelint": "7.10.1",
|
||||
"ts-node": "3.0.4",
|
||||
"tslint": "5.4.2",
|
||||
"tslint-eslint-rules": "4.1.1",
|
||||
"tslint-language-service": "0.9.6",
|
||||
"typescript": "2.3.4"
|
||||
}
|
||||
|
|
|
|||
193
tslint.json
193
tslint.json
|
|
@ -1,25 +1,89 @@
|
|||
{
|
||||
"extends": [
|
||||
"tslint-eslint-rules"
|
||||
],
|
||||
"rulesDirectory": [
|
||||
"node_modules/codelyzer"
|
||||
],
|
||||
"rules": {
|
||||
"max-line-length": [true, 120],
|
||||
"trailing-comma": [
|
||||
true,
|
||||
{
|
||||
"multiline": "always",
|
||||
"singleline": "never"
|
||||
}
|
||||
],
|
||||
"arrow-return-shorthand": true,
|
||||
"callable-types": true,
|
||||
"class-name": true,
|
||||
"comment-format": [true, "check-space"],
|
||||
"indent": [true, "spaces"],
|
||||
"comment-format": [
|
||||
true,
|
||||
"check-space"
|
||||
],
|
||||
"curly": true,
|
||||
"eofline": true,
|
||||
"no-duplicate-variable": true,
|
||||
"no-eval": true,
|
||||
"forin": true,
|
||||
"import-blacklist": [
|
||||
true,
|
||||
"rxjs"
|
||||
],
|
||||
"import-spacing": true,
|
||||
"indent": [
|
||||
true,
|
||||
"spaces"
|
||||
],
|
||||
"interface-over-type-literal": true,
|
||||
"label-position": true,
|
||||
"max-line-length": [
|
||||
true,
|
||||
120
|
||||
],
|
||||
"member-access": false,
|
||||
"no-arg": true,
|
||||
"no-internal-module": true,
|
||||
"no-bitwise": true,
|
||||
"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-misused-new": true,
|
||||
"no-non-null-assertion": true,
|
||||
"no-shadowed-variable": true,
|
||||
"no-string-literal": false,
|
||||
"no-string-throw": true,
|
||||
"no-switch-case-fall-through": true,
|
||||
"no-trailing-whitespace": true,
|
||||
"no-unnecessary-initializer": true,
|
||||
"no-unused-expression": true,
|
||||
"one-line": [true, "check-catch", "check-else", "check-open-brace", "check-whitespace"],
|
||||
"quotemark": [true, "single", "avoid-escape"],
|
||||
"semicolon": true,
|
||||
"no-use-before-declare": true,
|
||||
"no-var-keyword": true,
|
||||
"object-literal-sort-keys": false,
|
||||
"one-line": [
|
||||
true,
|
||||
"check-open-brace",
|
||||
"check-catch",
|
||||
"check-else",
|
||||
"check-whitespace"
|
||||
],
|
||||
"prefer-const": true,
|
||||
"quotemark": [
|
||||
true,
|
||||
"single"
|
||||
],
|
||||
"radix": true,
|
||||
"semicolon": [
|
||||
"always"
|
||||
],
|
||||
"triple-equals": [
|
||||
true,
|
||||
"allow-null-check"
|
||||
],
|
||||
"typedef-whitespace": [
|
||||
true,
|
||||
{
|
||||
|
|
@ -30,102 +94,39 @@
|
|||
"variable-declaration": "nospace"
|
||||
}
|
||||
],
|
||||
"curly": true,
|
||||
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
|
||||
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-type", "check-preblock"],
|
||||
"no-constant-condition": true,
|
||||
"no-control-regex": true,
|
||||
"no-debugger": true,
|
||||
"no-duplicate-case": true,
|
||||
"no-empty-character-class": true,
|
||||
"no-ex-assign": true,
|
||||
"no-extra-boolean-cast": true,
|
||||
"no-extra-semi": true,
|
||||
"no-inner-declarations": [true, "functions"],
|
||||
"no-invalid-regexp": true,
|
||||
"no-irregular-whitespace": true,
|
||||
"no-regex-spaces": true,
|
||||
"no-sparse-arrays": true,
|
||||
"no-unsafe-finally": true,
|
||||
"use-isnan": true,
|
||||
"valid-typeof": true,
|
||||
"label-position": true,
|
||||
"no-multi-spaces": [
|
||||
"typeof-compare": true,
|
||||
"unified-signatures": true,
|
||||
"variable-name": false,
|
||||
"whitespace": [
|
||||
true,
|
||||
{
|
||||
"exceptions": {
|
||||
"BinaryExpression": true,
|
||||
"PropertyAssignment": false,
|
||||
"VariableDeclarator": false,
|
||||
"ImportDeclaration": false
|
||||
}
|
||||
}
|
||||
"check-branch",
|
||||
"check-decl",
|
||||
"check-operator",
|
||||
"check-separator",
|
||||
"check-type"
|
||||
],
|
||||
"no-use-before-declare": true,
|
||||
"array-bracket-spacing": [true, "never"],
|
||||
"block-spacing": [
|
||||
"directive-selector": [
|
||||
true,
|
||||
"always"
|
||||
"attribute",
|
||||
"ngx",
|
||||
"camelCase"
|
||||
],
|
||||
"brace-style": [
|
||||
"component-selector": [
|
||||
true,
|
||||
"1tbs",
|
||||
{
|
||||
"allowSingleLine": true
|
||||
}
|
||||
"element",
|
||||
"ngx",
|
||||
"kebab-case"
|
||||
],
|
||||
"new-parens": true,
|
||||
"no-consecutive-blank-lines": [true, 2],
|
||||
"object-curly-spacing": [true, "always"],
|
||||
"ter-arrow-spacing": [
|
||||
true,
|
||||
{
|
||||
"before": true,
|
||||
"after": true
|
||||
}
|
||||
],
|
||||
"no-var-keyword": true,
|
||||
"prefer-const": true,
|
||||
"trailing-comma": [
|
||||
true,
|
||||
{
|
||||
"multiline": "always",
|
||||
"singleline": "never"
|
||||
}
|
||||
],
|
||||
"no-conditional-assignment": true,
|
||||
"no-console": [true, "log"],
|
||||
"space-in-parens": ["error", "info", "never"],
|
||||
"number-literal-format": true,
|
||||
"no-invalid-template-strings": true,
|
||||
"prefer-template": true,
|
||||
"no-unnecessary-callback-wrapper": true,
|
||||
"member-access": [true, "no-public"],
|
||||
"no-empty-interface": true,
|
||||
"no-reference": true,
|
||||
"prefer-for-of": true,
|
||||
"forin": true,
|
||||
"no-duplicate-super": true,
|
||||
"triple-equals": true,
|
||||
"array-type": [true, "array"],
|
||||
"arrow-return-shorthand": true,
|
||||
"no-boolean-literal-compare": true,
|
||||
"object-literal-shorthand": true,
|
||||
|
||||
"directive-selector": [true, "attribute", ["ngx", "test"], "camelCase"],
|
||||
"component-selector": [true, "element", ["ngx", "test"], "kebab-case"],
|
||||
"use-input-property-decorator": true,
|
||||
"use-output-property-decorator": true,
|
||||
"use-host-property-decorator": true,
|
||||
"no-attribute-parameter-decorator": true,
|
||||
"no-output-rename": true,
|
||||
"use-life-cycle-interface": true,
|
||||
"use-pipe-transform-interface": true,
|
||||
// "pipe-naming": [true, "camelCase", ["ngx", "test"]],
|
||||
"component-class-suffix": true,
|
||||
"directive-class-suffix": true,
|
||||
"templates-use-public": true,
|
||||
"no-access-missing-member": true,
|
||||
"invoke-injectable": true,
|
||||
"template-to-ng-template": true
|
||||
"templates-use-public": true,
|
||||
"invoke-injectable": true
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue