From 1a6ea2fb4494e9643ea3ec54550d92a5ab72479a Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Wed, 26 May 2021 21:46:17 -0700 Subject: [PATCH] doctor: Warn about missing `tidy` when using `web` --- modules/lang/web/doctor.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/lang/web/doctor.el b/modules/lang/web/doctor.el index 833bf3429..fa51a0d30 100644 --- a/modules/lang/web/doctor.el +++ b/modules/lang/web/doctor.el @@ -10,3 +10,5 @@ (unless (executable-find "stylelint") (warn! "Couldn't find stylelint. Linting for CSS modes will not work.")) +(unless (executable-find "tidy") + (warn! "Couldn't find tidy. Code formatting in HTML modes will not work."))