-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
docs(isIdentityCard): fix listed locales #2340
base: master
Are you sure you want to change the base?
docs(isIdentityCard): fix listed locales #2340
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #2340 +/- ##
===========================================
- Coverage 100.00% 99.95% -0.05%
===========================================
Files 109 107 -2
Lines 2489 2449 -40
Branches 628 619 -9
===========================================
- Hits 2489 2448 -41
- Partials 0 1 +1 ☔ View full report in Codecov by Sentry. |
Don't mind the failure of codecov/project. That is not due to your PR |
@@ -120,7 +120,11 @@ Validator | Description | |||
**isHexColor(str)** | check if the string is a hexadecimal color. | |||
**isHSL(str)** | check if the string is an HSL (hue, saturation, lightness, optional alpha) color based on [CSS Colors Level 4 specification][CSS Colors Level 4 Specification].<br/><br/>Comma-separated format supported. Space-separated format supported with the exception of a few edge cases (ex: `hsl(200grad+.1%62%/1)`). | |||
**isIBAN(str, [, options])** | check if the string is an IBAN (International Bank Account Number).<br/><br/>`options` is an object which accepts two attributes: `whitelist`: where you can restrict IBAN codes you want to receive data from and `blacklist`: where you can remove some of the countries from the current list. For both you can use an array with the following values `['AD','AE','AL','AT','AZ','BA','BE','BG','BH','BR','BY','CH','CR','CY','CZ','DE','DK','DO','EE','EG','ES','FI','FO','FR','GB','GE','GI','GL','GR','GT','HR','HU','IE','IL','IQ','IR','IS','IT','JO','KW','KZ','LB','LC','LI','LT','LU','LV','MC','MD','ME','MK','MR','MT','MU','MZ','NL','NO','PK','PL','PS','PT','QA','RO','RS','SA','SC','SE','SI','SK','SM','SV','TL','TN','TR','UA','VA','VG','XK']`. | |||
<<<<<<< docs/fix-listed-isIdentityCard-locales -- Incoming Change |
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.
fix the merge conflict
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.
Been meaning to, looks like @rubiin introduced that recently.
Will try to get to it over the weekend.
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.
must have left that when I fixed the conflict from github UI :|
Removed the
MZ
locale from the list of allowed locales forisIdentityCard
, since a validation method has never been added for said locale.It was added in #1604, presumably by mistake.
Checklist