Chore: Moved individual models into their own files.

Chore: Updated dependencies.
This commit is contained in:
2021-03-17 09:39:56 +05:30
parent 716c74c974
commit ea2bfb1c0c
89 changed files with 1306 additions and 1068 deletions

View File

@ -16,19 +16,13 @@
"createDefaultProgram": true
},
"extends": [
"plugin:@angular-eslint/ng-cli-compat",
"plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"plugins": [
"import"
],
"rules": {
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
],
"@angular-eslint/directive-selector": [
"error",
{
@ -37,6 +31,14 @@
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
],
"@typescript-eslint/lines-between-class-members": [
"error",
"always",
@ -51,14 +53,9 @@
"newlines-between": "always"
}
],
"@typescript-eslint/naming-convention": [
"off"
],
"@typescript-eslint/no-explicit-any": [
"error"
],
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error"
]
}
},
{