From 6ca620286402b37737e6f81b2370f312509e53d3 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 16 Sep 2016 14:35:40 -0700 Subject: [PATCH] [Emacs] Disable haskell-stack-ghc checker --- dotfiles/emacs.d/README.org | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 4c303f2f..fa5502dd 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -2296,6 +2296,8 @@ The following is taken from [[https://github.com/syl20bnr/spacemacs/blob/a650877 :commands haskell-mode :config (progn + (require 'flycheck) + (delq 'haskell-stack-ghc flycheck-checkers) (add-hook 'haskell-mode-hook 'turn-on-haskell-indent) (setq haskell-tags-on-save t))) #+END_SRC