Update feature check of flycheck in elixir mode

This patch updates the check for enabling flycheck bindings to the new
module location.
This commit is contained in:
Christian Kruse 2020-01-14 08:53:30 +01:00
parent a6d81dda4e
commit 5276762daa
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@
(add-hook 'elixir-mode-local-vars-hook #'lsp!))
(use-package! flycheck-credo
:when (featurep! :tools flycheck)
:when (featurep! :checkers syntax)
:config (flycheck-credo-setup)))

View File

@ -4,5 +4,5 @@
;; +elixir.el
(package! elixir-mode)
(package! alchemist)
(when (featurep! :tools flycheck)
(when (featurep! :checkers syntax)
(package! flycheck-credo))