From cb4e93581c28081463744a058242ec5ddf7ac467 Mon Sep 17 00:00:00 2001 From: Sergey Gulin Date: Wed, 5 Oct 2022 15:58:51 +1000 Subject: [PATCH] fixup! [#170] Reorganize top-level config keys --- src/Xrefcheck/CLI.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Xrefcheck/CLI.hs b/src/Xrefcheck/CLI.hs index f59938c2..67c96c97 100644 --- a/src/Xrefcheck/CLI.hs +++ b/src/Xrefcheck/CLI.hs @@ -80,7 +80,7 @@ data Options = Options } data ExclusionOptions = ExclusionOptions - { toIgnored :: [RelGlobPattern] + { eoIgnored :: [RelGlobPattern] } addExclusionOptions :: ExclusionConfig -> ExclusionOptions -> ExclusionConfig @@ -177,7 +177,7 @@ optionsParser = do exclusionOptionsParser :: Parser ExclusionOptions exclusionOptionsParser = do - toIgnored <- many . globOption $ + eoIgnored <- many . globOption $ long "ignored" <> metavar "GLOB PATTERN" <> help "Files which we pretend do not exist.\