From 9f52af27b9f2b39fdaf436e02c38ad75ac7e85a5 Mon Sep 17 00:00:00 2001 From: slotThe Date: Sun, 6 Jun 2021 18:36:05 +0200 Subject: [PATCH] Add .hlint.yaml We do want to ignore some hints. Currently this is: - Evaluate: Some type level magic sometimes requires us to write expressions that could be evaluated further, but should not. Related: https://github.com/xmonad/xmonad-contrib/issues/537 --- .hlint.yaml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .hlint.yaml diff --git a/.hlint.yaml b/.hlint.yaml new file mode 100644 index 00000000..b7dd591f --- /dev/null +++ b/.hlint.yaml @@ -0,0 +1,2 @@ +# Ignore these warnings. +- ignore: {name: "Evaluate"}