-
Updated
Jul 4, 2021 - TypeScript
validation
Here are 3,704 public repositories matching this topic...
-
Updated
Jun 28, 2021 - JavaScript
Are you submitting a bug report or a feature request?
Bug? I guess.
What is the current behavior?
-
Updated
Jul 3, 2021 - TypeScript
-
Updated
Jul 4, 2021 - PHP
Package version eg. v9, v10:
github.com/go-playground/locales v0.13.0
github.com/go-playground/universal-translator v0.17.0
github.com/go-playground/validator/v10 v10.2.0
Issue, Question or Enhancement:
Golangci-lint (https://github.com/golangci/golangci-lint) comes with a errorlint linter (https://github.com/polyfloyd/go-errorlint). When I switched it on, I got this issue f
-
Updated
Jul 1, 2021 - Python
-
Updated
Jun 8, 2021 - JavaScript
-
Updated
Jul 3, 2021 - TypeScript
-
Updated
Jul 2, 2021 - JavaScript
-
Updated
Jun 21, 2021 - JavaScript
-
Updated
Jun 28, 2021 - Python
-
Updated
Jul 4, 2021 - PHP
-
Updated
Jun 30, 2021 - TypeScript
Everything should be updated to validatorjs 13.6.1.
type Item struct {
Bt int `valid:"range(1|100)"`
}
func main() {
t := Item{-1}
ok, err := govalidator.ValidateStruct(t)
fmt.Println(ok, err)
}
output:Bt: Validator range(1|100) doesn't support kind int;
-
Updated
May 26, 2021 - TypeScript
-
Updated
Jun 21, 2021 - Swift
-
Updated
Jun 28, 2021 - JavaScript
-
Updated
Jun 26, 2021 - JavaScript
-
Updated
Jul 2, 2021 - TypeScript
-
Updated
Jun 14, 2021 - Python
-
Updated
Jun 4, 2021 - Makefile
-
Updated
Jun 26, 2021 - Go
-
Updated
Jul 4, 2021 - PHP
-
Updated
Jul 1, 2021 - TypeScript
-
Updated
Jun 10, 2021 - JavaScript
With #235 I've noticed that InstanceOf is undocumented in the readme.
# doc and more doc
Add more doc in the code urgent the Validator class
Improve this page
Add a description, image, and links to the validation topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the validation topic, visit your repo's landing page and select "manage topics."
Describe the bug
Mobile phone numbers in Germany start with a
0prefix such as 0157xxxxxxx. However the preceding0is dropped if the country code prefix+49is added. This is described on this wikipedia page. Therefore the related change made a while ago is not re