1
0
mirror of https://github.com/jojojames/evil-collection.git synced 2024-06-23 07:16:37 +02:00
evil-collection/Makefile
James Nguyen 720a94cda6 Ignore check-version-regexp-list in lint
Using a hammer to ignore if-let/when-let complaints.
2019-10-20 15:56:57 -07:00

25 lines
748 B
Makefile
Executable File

EMACS ?= emacs
compile:
cask exec $(EMACS) -Q -batch \
-L . \
--eval '(setq evil-want-integration nil)' \
--eval '(setq byte-compile-error-on-warn t)' \
-f batch-byte-compile *.el modes/*/*.el
lint:
cask exec $(EMACS) -Q -batch \
--eval "(require 'package)" \
--eval "(push '(\"melpa\" . \"http://melpa.org/packages/\") package-archives)" \
--eval "(package-initialize)" \
--eval "(package-refresh-contents)" \
-l package-lint.el \
--eval "(advice-add 'package-lint--check-eval-after-load :around 'ignore)" \
--eval "(advice-add 'package-lint--check-version-regexp-list :around 'ignore)" \
-f package-lint-batch-and-exit *.el modes/*/*.el
test:
cask exec ert-runner
.PHONY: compile lint test