We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
template-conditional-complexity is giving an error when the template conditional complexity is returning the wrong error message
template-conditional-complexity
"template-conditional-complexity": { "severity": "warning", "options": [2] },
Code example
*ngIf="!options?.hideShowMoreButton && options?.usePagination && eventTables[item.id]"
** Actual behaviour** The condition complexity (cost '2') exceeded the defined limit (cost '3').
*ngIf="participantIndex === 0 && showSetCount && !showSummaryOnly"
** Actual behaviour** The condition complexity (cost '3') exceeded the defined limit (cost '3').
** Expected ** Proper error message
The text was updated successfully, but these errors were encountered:
Duplicate: #533
Sorry, something went wrong.
No branches or pull requests
template-conditional-complexity
is giving an error when the template conditional complexity is returning the wrong error messageCode example
** Actual behaviour**
The condition complexity (cost '2') exceeded the defined limit (cost '3').
** Actual behaviour**
The condition complexity (cost '3') exceeded the defined limit (cost '3').
** Expected **
Proper error message
The text was updated successfully, but these errors were encountered: