Merge pull request #2366 from ckruse/develop

Update feature check of flycheck in elixir mode
This commit is contained in:
Henrik Lissner 2020-01-14 02:58:57 -05:00 committed by GitHub
commit 01a5994805
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

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

View file

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