[ACS-11153] Corrected eslint rule for ng-reflect (#11671)

This commit is contained in:
AleksanderSklorz
2026-02-20 12:42:39 +01:00
committed by GitHub
parent cfb9a505e4
commit 57b8fe7174
+2 -2
View File
@@ -195,8 +195,8 @@ module.exports = {
message: 'Enums are not allowed. Use string literal types (e.g., type Foo = "a" | "b") or const objects instead.' 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: 'Literal[value=/ng-reflect-/]',
message: 'ng-reflect-* attributes should not be used. Consider alternatives for proper selectors.' message: '*ng-reflect-* attributes should not be used. Consider alternatives for proper selectors.'
} }
] ]
} }