2021-12-17 02:31:18 +08:00
|
|
|
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
|
|
;;; lang/erlang/doctor.el
|
|
|
|
|
2022-08-12 20:29:19 +02:00
|
|
|
(assert! (or (not (modulep! +lsp))
|
|
|
|
(modulep! :tools lsp))
|
2021-12-17 02:31:18 +08:00
|
|
|
"This module requires (:tools lsp)")
|
2022-08-16 08:16:08 +01:00
|
|
|
|
|
|
|
(when (modulep! :editor format)
|
2024-09-08 05:11:43 +10:00
|
|
|
(unless (and (executable-find "rebar3") (zerop (car (doom-call-process "rebar3" "fmt" "-v"))))
|
|
|
|
(warn! "Couldn't find erlfmt. Formatting will be disabled.")))
|