-
-
Notifications
You must be signed in to change notification settings - Fork 243
fix(eslint-plugin-template): [i18n] Avoid exception in i18n rule with allowMarkupInContent=false #2327
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
View your CI Pipeline Execution ↗ for commit 579368f.
☁️ Nx Cloud last updated this comment at |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2327 +/- ##
=======================================
Coverage 92.33% 92.33%
=======================================
Files 181 181
Lines 3367 3367
Branches 685 685
=======================================
Hits 3109 3109
Misses 200 200
Partials 58 58
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
My pleasure. @JamesHenry any chance we could get this cherry-picked into a new version 18 release? |
@JamesHenry I don't mean to be a pest, but in case you missed it or forgot, I wanted to ping you again about getting a Angular-18-compatible release with this fix. Would that be possible? |
The
i18n
rule ineslint-plugin-template
results in an exception when the optionallowMarkupInContent
is set tofalse
and a template includes an element with noi18n
attribute. There was previously no test case without ani18n
attribute. Fixed the issue and added a test case.