GNU ELPA - validate

validate

Description
Schema validation for Emacs-lisp
Latest
validate-1.0.4.el, 2017-Mar-06, 10.5 KiB
Home page
http://elpa.gnu.org/packages/validate.html
Browse repository
CGit or Gitweb
Badge

To install this package, run in Emacs:

M-x package-install RET validate RET

Full description

This library offers two functions that perform schema validation.
Use this is your Elisp packages to provide very informative error
messages when your users accidentally misconfigure a variable.
For instance, if everything is fine, these do the same thing:

  1.  (validate-variable 'cider-known-endpoints)
  2.  cider-known-endpoints

However, if the user has misconfigured this variable, option
1. will immediately give them an informative error message, while
option 2. won't say anything and will lead to confusing errors down
the line.

The format and language of the schemas is the same one used in the
`:type' property of a `defcustom'.

    See: (info "(elisp) Customization Types")

Both functions throw a `user-error' if the value in question
doesn't match the schema, and return the value itself if it
matches.  The function `validate-variable' verifies whether the value of a
custom variable matches its custom-type, while `validate-value' checks an
arbitrary value against an arbitrary schema.

Missing features: `:inline', `plist', `coding-system', `color',
`hook', `restricted-sexp'.

Old versions

validate-1.0.2.el2016-Nov-1710.3 KiB
validate-1.0.0.el2016-Oct-1210.0 KiB
validate-0.5.el2016-May-129.92 KiB
validate-0.4.el2016-May-109.47 KiB
validate-0.3.el2016-May-048.97 KiB