From 6df9b386fcda361a6295235c48d8620d641b61e6 Mon Sep 17 00:00:00 2001 From: Mike Pilgrem Date: Mon, 30 Oct 2023 22:10:39 +0000 Subject: [PATCH] Exclude autogen\Paths_stack.hs from Stan's scope --- .stan.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.stan.toml b/.stan.toml index 1eaa5a9b..7d736608 100644 --- a/.stan.toml +++ b/.stan.toml @@ -1,3 +1,19 @@ +# Partial: base/last +# On Windows +# To exclude .stack-work\dist\\build\internal\autogen\Paths_pantry.hs +[[check]] + id = "STAN-0004" + directory = ".stack-work\\dist" + type = "Exclude" + +# Partial: base/last +# On Unix-like operating systems +# To exclude .stack-work/dist//build/internal/autogen/Paths_pantry.hs +[[check]] + id = "STAN-0004" + directory = ".stack-work/dist" + type = "Exclude" + # Infinite: base/reverse # Usage of the 'reverse' function that hangs on infinite lists # Pantry uses Data.List.reverse in many places