feat(angular-cli): integrate angular-cli (#989)

This commit is contained in:
hryb 2017-04-18 18:41:04 +03:00 committed by Alexander Zhukov
parent 7b8a6f4e88
commit 523f44b746
138 changed files with 4507 additions and 7170 deletions

View file

@ -1,20 +1,24 @@
{
"rulesDirectory": [
"node_modules/tslint-eslint-rules/dist/rules",
"node_modules/codelyzer"
],
"rules": {
"member-access": false,
"member-ordering": [
true,
"public-before-private",
"static-before-instance",
"variables-before-functions"
],
"no-any": false,
"no-inferrable-types": false,
"max-line-length": [true, 120],
"class-name": true,
"comment-format": [true, "check-space"],
"indent": [true, "spaces"],
"eofline": true,
"no-duplicate-variable": true,
"no-eval": true,
"no-arg": true,
"no-internal-module": true,
"no-var-requires": false,
"typedef": false,
"no-bitwise": true,
"no-shadowed-variable": true,
"no-unused-expression": true,
"one-line": [true, "check-catch", "check-else", "check-open-brace", "check-whitespace"],
"quotemark": [true, "single", "avoid-escape"],
"semicolon": true,
"typedef-whitespace": [
true,
{
@ -23,106 +27,91 @@
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
},
{
"call-signature": "space",
"index-signature": "space",
"parameter": "space",
"property-declaration": "space",
"variable-declaration": "space"
}
],
"ban": false,
"curly": false,
"forin": true,
"label-position": true,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-console": [
true,
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-construct": true,
"curly": true,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type"],
"no-constant-condition": true,
"no-control-regex": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": false,
"no-eval": true,
"no-null-keyword": false,
"no-shadowed-variable": true,
"no-string-literal": false,
"no-switch-case-fall-through": true,
"no-unused-expression": 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,
{
"exceptions": {
"BinaryExpression": true,
"PropertyAssignment": false,
"VariableDeclarator": false,
"ImportDeclaration": false
}
}
],
"no-unused-new": true,
"no-use-before-declare": true,
"array-bracket-spacing": [true, "never"],
"block-spacing": [
true,
"always"
],
"brace-style": [
true,
"1tbs",
{
"allowSingleLine": true
}
],
"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,
"radix": true,
"switch-default": true,
"triple-equals": [
true,
"allow-null-check"
],
"eofline": true,
"indent": [
true,
"spaces"
],
"max-line-length": [
true,
120
],
"no-require-imports": false,
"no-trailing-whitespace": true,
"object-literal-sort-keys": false,
"prefer-const": true,
"trailing-comma": [
true,
{
"multiline": false,
"multiline": "always",
"singleline": "never"
}
],
"align": false,
"class-name": true,
"comment-format": [
true,
"check-space"
],
"interface-name": false,
"jsdoc-format": true,
"no-consecutive-blank-lines": false,
"one-line": [
false,
"check-open-brace",
"check-catch",
"check-else",
"check-finally",
"check-whitespace"
],
"quotemark": [
true,
"single",
"avoid-escape"
],
"semicolon": [true, "always"],
"variable-name": [
true,
"check-format",
"allow-leading-underscore",
"ban-keywords"
],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
],
"import-destructuring-spacing": true
"no-conditional-assignment": true,
"no-console": [true, "log"],
"directive-selector": [true, "attribute", ["nga"], "camelCase"],
"component-selector": [true, "element", ["nga"], "kebab-case"],
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"no-attribute-parameter-decorator": true,
"no-input-rename": true,
"no-output-rename": true,
"no-forward-ref": true,
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"component-class-suffix": [true, "Component"],
"directive-class-suffix": [true, "Directive"],
"import-destructuring-spacing": true,
"templates-use-public": true,
"no-access-missing-member": true,
"invoke-injectable": true,
"space-in-parens": ["error", "info", "never"]
}
}