-
Updated
Jun 7, 2021 - TypeScript
validation
Here are 3,653 public repositories matching this topic...
-
Updated
May 26, 2021 - JavaScript
Are you submitting a bug report or a feature request?
Bug? I guess.
What is the current behavior?
-
Updated
Jun 5, 2021 - TypeScript
-
Updated
Jun 7, 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
Jun 7, 2021 - Python
-
Updated
Apr 7, 2021 - JavaScript
-
Updated
Jun 7, 2021 - TypeScript
-
Updated
Jun 7, 2021 - JavaScript
-
Updated
Jun 7, 2021 - JavaScript
-
Updated
May 21, 2021 - Python
-
Updated
Jun 6, 2021 - PHP
-
Updated
Jun 7, 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 7, 2021 - Swift
-
Updated
Jun 4, 2021 - JavaScript
-
Updated
Jun 5, 2021 - JavaScript
-
Updated
Jun 5, 2021 - TypeScript
-
Updated
Apr 4, 2021 - Python
-
Updated
Jun 4, 2021 - Makefile
-
Updated
Jun 3, 2021 - PHP
-
Updated
Jan 24, 2021 - Go
-
Updated
May 10, 2021 - TypeScript
-
Updated
May 21, 2021 - JavaScript
# doc and more doc
Add more doc in the code urgent the Validator class
With #235 I've noticed that InstanceOf is undocumented in the readme.
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