verily icon indicating copy to clipboard operation
verily copied to clipboard

Map validation library for Clojure

Results 6 verily issues
Sort by recently updated
recently updated
newest added

I recently ran into a situation where I wanted to disallow a specific character in a field. In this case, I reached for `matches` and provided a whitelist regex. It...

Having older versions of clojurescript in the dependency tree seems to cause issues with using Light Table. ``` Error loading lighttable.nrepl.handler: java.io.FileNotFoundException: Could not locate cljs/env__init.class or cljs/env.clj on classpath:...

Right now you can "and" validations with the `combine` function. I'm looking for something which can "or" validations based on a predicate (including all the build-in stuff like `required`, `not-blank`...

To get the benefits of a format that can be operated on generically, validations should be maps, like Formative field specs: {:type :required :keys [:foo :bar] :msg "blah"} {:type :at-least...

For applying a validation across every element of a collection. Leave out :keys and :msg for the individual validation? [:every :email :emails "must be all valid emails"] [:every [:min-length 2]...