8 lines
299 B
EmacsLisp
8 lines
299 B
EmacsLisp
;;; lang/web/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
(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."))
|
|
|