From 5935fbfb5bcdc4c7db193c824d24d2fd2da50964 Mon Sep 17 00:00:00 2001 From: AleksanderSklorz <115619721+AleksanderSklorz@users.noreply.github.com> Date: Fri, 20 Feb 2026 15:41:11 +0100 Subject: [PATCH] [ACS-11153] Changed eslint rule for ng-reflect after copilot suggestion in ACA (#11673) --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 9ac6c5a24f..f9961073fb 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -195,7 +195,7 @@ module.exports = { message: 'Enums are not allowed. Use string literal types (e.g., type Foo = "a" | "b") or const objects instead.' }, { - selector: 'Literal[value=/ng-reflect-/]', + selector: ':matches(Literal[value=/ng-reflect-/], TemplateElement[value.cooked=/ng-reflect-/])', message: '*ng-reflect-* attributes should not be used. Consider alternatives for proper selectors.' } ]