validation icon indicating copy to clipboard operation
validation copied to clipboard

An idiomatic validation package. Supports configurable and extensible validation rules (validators) using normal language constructs instead of error-prone struct tags.

Results 2 validation issues
Sort by recently updated
recently updated
newest added

I want to check field has not more than N decimal places

While using the `In` and `NotIn` rules, I've noticed that their implementations are inconsistent. The former uses DeepEqual to verify equality, whereas the latter uses the equality operator. In cases...