Also: - Reorganizes some :lang modules' packages.el file. - Adds setuptools check in lang/python - Adds javac check in lang/java - Removes the depends-on! macro
12 lines
419 B
EmacsLisp
12 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."))
|
|
|