mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-03-07 22:22:33 +01:00
build: update the dependencies
This commit is contained in:
parent
d851e872cc
commit
c726b8eb5d
3 changed files with 161 additions and 352 deletions
37
tslint.json
37
tslint.json
|
|
@ -1,6 +1,8 @@
|
|||
{
|
||||
"extends": [
|
||||
"tslint-eslint-rules"
|
||||
],
|
||||
"rulesDirectory": [
|
||||
"node_modules/tslint-eslint-rules/dist/rules",
|
||||
"node_modules/codelyzer"
|
||||
],
|
||||
"rules": {
|
||||
|
|
@ -31,7 +33,7 @@
|
|||
],
|
||||
"curly": true,
|
||||
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
|
||||
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type"],
|
||||
"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,
|
||||
|
|
@ -60,7 +62,6 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"no-unused-new": true,
|
||||
"no-use-before-declare": true,
|
||||
"array-bracket-spacing": [true, "never"],
|
||||
"block-spacing": [
|
||||
|
|
@ -95,8 +96,26 @@
|
|||
],
|
||||
"no-conditional-assignment": true,
|
||||
"no-console": [true, "log"],
|
||||
"directive-selector": [true, "attribute", ["nga"], "camelCase"],
|
||||
"component-selector": [true, "element", ["nga"], "kebab-case"],
|
||||
"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"],
|
||||
"newline-before-return": true,
|
||||
"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", ["nga", "ngd", "ngt"], "camelCase"],
|
||||
"component-selector": [true, "element", ["nga", "ngd", "ngt"], "kebab-case"],
|
||||
"use-input-property-decorator": true,
|
||||
"use-output-property-decorator": true,
|
||||
"use-host-property-decorator": true,
|
||||
|
|
@ -106,12 +125,12 @@
|
|||
"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,
|
||||
"pipe-naming": [true, "camelCase", ["nga", "ngd", "ngt"]],
|
||||
"component-class-suffix": true,
|
||||
"directive-class-suffix": true,
|
||||
"templates-use-public": true,
|
||||
"no-access-missing-member": true,
|
||||
"invoke-injectable": true,
|
||||
"space-in-parens": ["error", "info", "never"]
|
||||
"template-to-ng-template": true
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue