diff options
| author | David Shepherd <davidshepherd7@gmail.com> | 2017-03-16 12:42:06 +0000 |
|---|---|---|
| committer | David Shepherd <davidshepherd7@gmail.com> | 2017-03-16 12:42:06 +0000 |
| commit | bd09ec03d5c8a132234e8a03fa35ff1b91147362 (patch) | |
| tree | 47f24f9ba353d19bb4bc9f571939a2f70f886a5f | |
| parent | Add function to launch in project root (diff) | |
| download | emacs-terminal-here-bd09ec03d5c8a132234e8a03fa35ff1b91147362.tar.gz | |
Add package linting
| -rw-r--r-- | Cask | 1 | ||||
| -rw-r--r-- | Makefile | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -12,6 +12,7 @@ (development (depends-on "ert-runner") (depends-on "el-mock") + (depends-on "package-lint") ;; For testing defcustom types (depends-on "validate")) @@ -1,7 +1,10 @@ EMACS=emacs CASK ?= cask -build : +package-lint: + cask exec $(EMACS) -Q --batch -l "package-lint.el" -f "package-lint-batch-and-exit" terminal-here.el + +build : package-lint cask exec $(EMACS) -Q --batch --eval \ "(progn \ (setq byte-compile-error-on-warn t) \ |
