From 7c19a6e8909352fd9c742b3707b6bb8338092628 Mon Sep 17 00:00:00 2001 From: Laborratte5 Date: Thu, 18 Jul 2024 16:32:58 +0200 Subject: [PATCH] chore(Parser): Ignore HLINT warnings --- app/Parser.hs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Parser.hs b/app/Parser.hs index c7b9431..bf40af3 100644 --- a/app/Parser.hs +++ b/app/Parser.hs @@ -1,3 +1,6 @@ +{-# OPTIONS_GHC -Wno-unrecognised-pragmas #-} +{-# HLINT ignore "Use lambda-case" #-} +{-# HLINT ignore "Use tuple-section" #-} module Parser where import qualified Lexer as L