You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following line fails the validation by this linter:
|`verification_value`| Required |`string`| The Card Verification Value (CVV) code from the back of the card |
Even though the acronym is expanded, it still is reported as an unexpanded acronym because the rule is comparing CVV to TCVV
If I change the above snippet of content to either one of these lines, the content passes the validation:
|`verification_value`| Required |`string`| Card Verification Value (CVV) code from the back of the card ||`verification_value`| Required |`string`| This is Card Verification Value (CVV) code from the back of the card |
The following line fails the validation by this linter:
Even though the acronym is expanded, it still is reported as an unexpanded acronym because the rule is comparing
CVV
toTCVV
If I change the above snippet of content to either one of these lines, the content passes the validation:
Not sure if this issue is related to PR #6
The text was updated successfully, but these errors were encountered: