elisp-lint icon indicating copy to clipboard operation
elisp-lint copied to clipboard

Basic linting for Emacs Lisp

Results 7 elisp-lint issues
Sort by recently updated
recently updated
newest added

Small change request. I'm using an elisp file to run the lints, using `--script` rather than `--batch` to push more work into elisp and less bash / Makefile. The printing...

While linting anzu.el: ``` anzu.el:43:Warning (check-declare): said ‘migemo-forward’ was defined in unknown file: Malformed declaration Indenting region... Indenting region...done anzu.el OK ``` That warning was generated by check-declare but not...

bug
wait for upstream

I have some comments with a link in it and the linter complains about their length. I can not break the links into multiple lines, as that would destroy them...

enhancement

This is a minor change suggested by me in #31, and also agreed to by the original author of `...-no-color` change. To quote: > Would be nice if elisp-lint--no-color was...

Or is there more to do, e.g.: > Also, if that variable is safe to be set as a file-local variable, then you should declare it as such. See https://github.com/gonewest818/adafruit-wisdom.el/pull/1#issuecomment-366513611

Like most linters, it really needs a switch to turn off a check on certain lines or sexps. Would be happy if there was a simple comment at the end...

I have code like the following: ```elisp ;; Local Variables: ;; read-symbol-shorthands: (("ef-" . "extended-faces-")) ;; End: (defmacro ef-defface (face spec doc &rest args) (declare (doc-string 3) (indent 2)) `(defface...