aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRadon Rosborough <radon@intuitiveexplanations.com>2025-01-12 22:50:10 -0800
committerGitHub <noreply@github.com>2025-01-12 22:50:10 -0800
commit30b19fa7b3841bb9b811e2ecdcd3782248052ae8 (patch)
tree7e1e581bfc6def74d014c163313d7117bb32e73c /Makefile
parent543f6d651d11322f26665f017f051fbcfc21ceb0 (diff)
[#336] Fix broken link (#340)
Close https://github.com/radian-software/apheleia/issues/336
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 8560a77..9bc2998 100644
--- a/Makefile
+++ b/Makefile
@@ -49,6 +49,8 @@ checkdoc: ## Check for missing or poorly formatted docstrings
--eval "(or (fboundp 'checkdoc-file) (kill-emacs))" \
--eval "(setq sentence-end-double-space nil)" \
--eval "(checkdoc-file \"$$file\")" 2>&1 \
+ | (grep -v "Warning (emacs): \\?$$" ||:) \
+ | (grep -v "Some lines are over 80 columns wide" ||:) \
| grep . && exit 1 || true ;\
done