emacs-elsa / Elsa

Emacs Lisp Static Analyzer and gradual type system.
GNU General Public License v3.0
640 stars 26 forks source link

Prefer `-p` over `?` suffix for predicates #137

Open Fuco1 opened 5 years ago

Fuco1 commented 5 years ago

According to the style guide Emacs Lisp prefers -p for multiword and p for singleword predicates over the ? suffix which is a clojurism.

Fuco1 commented 5 years ago

Also add a notice about things like is-even? => evenp (i.e. drop the is prefix)