From e6a451e07dea1ef905467e5343053eeb53d9428b Mon Sep 17 00:00:00 2001 From: Amneesh Singh Date: Wed, 3 Dec 2025 03:02:25 +0530 Subject: [PATCH] emacs: fix HLS compatibility with GHC 10.3 https://github.com/haskell/haskell-language-server/issues/4674 Signed-off-by: Amneesh Singh --- .dir-locals.el | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..dc8aa38 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,2 @@ +((haskell-mode . ((lsp-haskell-plugin-hlint-diagnostics-on . nil) + (lsp-haskell-plugin-hlint-code-actions-on . nil))))