ci: Ignore warnings about wide docstring

This commit is contained in:
condy 2022-02-17 02:43:20 +08:00 committed by Youmu
parent d5403bb112
commit 3237683c27
1 changed files with 15 additions and 9 deletions

View File

@ -10,8 +10,10 @@ ELPA_DIR = \
compile:
$(CASK) exec $(EMACS) -Q -batch \
-L . \
--eval '(setq evil-want-integration nil)' \
--eval '(setq byte-compile-error-on-warn t)' \
--eval "(setq evil-want-integration nil)" \
--eval "(setq evil-want-keybinding nil)" \
--eval "(setq byte-compile-docstring-max-column 200)" \
--eval "(setq byte-compile-error-on-warn t)" \
-f batch-byte-compile *.el modes/*/*.el
lint:
@ -43,3 +45,7 @@ $(ELPA_DIR): Cask
touch $@
.PHONY: compile lint test elpa
# Local Variables:
# tab-width: 8
# End: