Update project code according to dependencies update

This commit is contained in:
ShahanaFarooqui 2026-01-20 16:21:04 -08:00 committed by Suheb
parent 2f6cdb8fe0
commit 4e08fd7cba
387 changed files with 1180 additions and 703 deletions

View file

@ -24,7 +24,7 @@
],
"rules": {
"@angular-eslint/component-selector": ["error", { "prefix": "rtl", "style": "kebab-case", "type": "element" }],
"@angular-eslint/directive-selector": ["error", { "style": "camelCase", "type": "attribute" }],
"@angular-eslint/directive-selector": ["error", { "style": "camelCase", "type": "attribute", "prefix": [] }],
"@angular-eslint/consistent-component-styles": "off",
"@angular-eslint/prefer-on-push-component-change-detection": "off",
"@angular-eslint/prefer-standalone": "off",
@ -32,6 +32,11 @@
"@angular-eslint/sort-ngmodule-metadata-arrays": "off",
"@angular-eslint/use-component-view-encapsulation": "off",
"@angular-eslint/use-injectable-provided-in": "off",
"@angular-eslint/prefer-inject": "off",
"@angular-eslint/sort-keys-in-type-decorator": "off",
"@angular-eslint/prefer-signals": "off",
"@angular-eslint/prefer-host-metadata-property": "off",
"@angular-eslint/prefer-output-emitter-ref": "off",
"@typescript-eslint/member-delimiter-style": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/type-annotation-spacing": 0,
@ -207,7 +212,8 @@
"@angular-eslint/template/prefer-ngsrc": "off",
"@angular-eslint/template/prefer-control-flow": "off",
"@angular-eslint/template/prefer-self-closing-tags": "off",
"@angular-eslint/template/use-track-by-function": "off"
"@angular-eslint/template/use-track-by-function": "off",
"@angular-eslint/template/prefer-template-literal": "off"
}
}
]