├── .circleci └── config.yml ├── .github ├── ISSUE_TEMPLATE │ ├── BC_Break.md │ ├── Bug.md │ ├── Feature_Request.md │ └── config.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── arrays.go ├── arrays_benchmark_test.go ├── arrays_example_test.go ├── arrays_test.go ├── converter.go ├── converter_benchmark_test.go ├── converter_example_test.go ├── converter_test.go ├── doc.go ├── error.go ├── error_test.go ├── go.mod ├── numerics.go ├── numerics_benchmark_test.go ├── numerics_example_test.go ├── numerics_test.go ├── patterns.go ├── types.go ├── utils.go ├── utils_benchmark_test.go ├── utils_example_test.go ├── utils_test.go ├── validator.go ├── validator_test.go └── wercker.yml /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BC_Break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/.github/ISSUE_TEMPLATE/BC_Break.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/.github/ISSUE_TEMPLATE/Bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/.github/ISSUE_TEMPLATE/Feature_Request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/README.md -------------------------------------------------------------------------------- /arrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/arrays.go -------------------------------------------------------------------------------- /arrays_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/arrays_benchmark_test.go -------------------------------------------------------------------------------- /arrays_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/arrays_example_test.go -------------------------------------------------------------------------------- /arrays_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/arrays_test.go -------------------------------------------------------------------------------- /converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/converter.go -------------------------------------------------------------------------------- /converter_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/converter_benchmark_test.go -------------------------------------------------------------------------------- /converter_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/converter_example_test.go -------------------------------------------------------------------------------- /converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/converter_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/doc.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/error.go -------------------------------------------------------------------------------- /error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/error_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/asaskevich/govalidator/v11 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /numerics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/numerics.go -------------------------------------------------------------------------------- /numerics_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/numerics_benchmark_test.go -------------------------------------------------------------------------------- /numerics_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/numerics_example_test.go -------------------------------------------------------------------------------- /numerics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/numerics_test.go -------------------------------------------------------------------------------- /patterns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/patterns.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/types.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/utils.go -------------------------------------------------------------------------------- /utils_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/utils_benchmark_test.go -------------------------------------------------------------------------------- /utils_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/utils_example_test.go -------------------------------------------------------------------------------- /utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/utils_test.go -------------------------------------------------------------------------------- /validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/validator.go -------------------------------------------------------------------------------- /validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/validator_test.go -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asaskevich/govalidator/HEAD/wercker.yml --------------------------------------------------------------------------------