build: update tslint config

This commit is contained in:
Alexander Zhukov 2017-07-10 14:04:45 +03:00
parent 2ed871ff20
commit 3561acca02
3 changed files with 3543 additions and 1248 deletions

4597
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -91,7 +91,6 @@
"stylelint": "7.10.1", "stylelint": "7.10.1",
"ts-node": "3.0.4", "ts-node": "3.0.4",
"tslint": "5.4.2", "tslint": "5.4.2",
"tslint-eslint-rules": "4.1.1",
"tslint-language-service": "0.9.6", "tslint-language-service": "0.9.6",
"typescript": "2.3.4" "typescript": "2.3.4"
} }

View file

@ -1,25 +1,89 @@
{ {
"extends": [
"tslint-eslint-rules"
],
"rulesDirectory": [ "rulesDirectory": [
"node_modules/codelyzer" "node_modules/codelyzer"
], ],
"rules": { "rules": {
"max-line-length": [true, 120], "trailing-comma": [
true,
{
"multiline": "always",
"singleline": "never"
}
],
"arrow-return-shorthand": true,
"callable-types": true,
"class-name": true, "class-name": true,
"comment-format": [true, "check-space"], "comment-format": [
"indent": [true, "spaces"], true,
"check-space"
],
"curly": true,
"eofline": true, "eofline": true,
"no-duplicate-variable": true, "forin": true,
"no-eval": 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-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-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, "no-unused-expression": true,
"one-line": [true, "check-catch", "check-else", "check-open-brace", "check-whitespace"], "no-use-before-declare": true,
"quotemark": [true, "single", "avoid-escape"], "no-var-keyword": true,
"semicolon": 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": [ "typedef-whitespace": [
true, true,
{ {
@ -30,102 +94,39 @@
"variable-declaration": "nospace" "variable-declaration": "nospace"
} }
], ],
"curly": true, "typeof-compare": true,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"], "unified-signatures": true,
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-type", "check-preblock"], "variable-name": false,
"no-constant-condition": true, "whitespace": [
"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": [
true, true,
{ "check-branch",
"exceptions": { "check-decl",
"BinaryExpression": true, "check-operator",
"PropertyAssignment": false, "check-separator",
"VariableDeclarator": false, "check-type"
"ImportDeclaration": false
}
}
], ],
"no-use-before-declare": true, "directive-selector": [
"array-bracket-spacing": [true, "never"],
"block-spacing": [
true, true,
"always" "attribute",
"ngx",
"camelCase"
], ],
"brace-style": [ "component-selector": [
true, true,
"1tbs", "element",
{ "ngx",
"allowSingleLine": true "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-input-property-decorator": true,
"use-output-property-decorator": true, "use-output-property-decorator": true,
"use-host-property-decorator": true, "use-host-property-decorator": true,
"no-attribute-parameter-decorator": true, "no-output-rename": true,
"use-life-cycle-interface": true, "use-life-cycle-interface": true,
"use-pipe-transform-interface": true, "use-pipe-transform-interface": true,
// "pipe-naming": [true, "camelCase", ["ngx", "test"]],
"component-class-suffix": true, "component-class-suffix": true,
"directive-class-suffix": true, "directive-class-suffix": true,
"templates-use-public": true,
"no-access-missing-member": true, "no-access-missing-member": true,
"invoke-injectable": true, "templates-use-public": true,
"template-to-ng-template": true "invoke-injectable": true
} }
} }