lang/crystal: add ameba linter support

This commit is contained in:
Henrik Lissner 2019-10-19 14:54:31 -04:00
parent c8efb45746
commit 4a1c781fab
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395
2 changed files with 9 additions and 1 deletions

View File

@ -17,5 +17,11 @@
:after crystal-mode)
(use-package! flycheck-ameba
:when (featurep! :tools flycheck)
:after crystal-mode
:config (flycheck-ameba-setup))
(use-package! inf-crystal
:commands crystal-switch-to-inf)

View File

@ -2,5 +2,7 @@
;;; lang/crystal/packages.el
(package! crystal-mode)
(package! flycheck-crystal)
(package! inf-crystal)
(when (featurep! :tools flycheck)
(package! flycheck-crystal)
(package! flycheck-ameba))