mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-24 03:50:24 +10:00
13 lines
419 B
EmacsLisp
13 lines
419 B
EmacsLisp
;;; lang/web/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
(assert! (or (not (featurep! +lsp))
|
|
(featurep! :tools lsp))
|
|
"This module requires (:tools lsp)")
|
|
|
|
(unless (executable-find "js-beautify")
|
|
(warn! "Couldn't find js-beautify. Code formatting in JS/CSS/HTML modes will not work."))
|
|
|
|
(unless (executable-find "stylelint")
|
|
(warn! "Couldn't find stylelint. Linting for CSS modes will not work."))
|
|
|