Skip to content

Commit

Permalink
screened 2024-06-06 22:42:46+00:00
Browse files Browse the repository at this point in the history
  • Loading branch information
hsenag committed Jun 6, 2024
1 parent ea020a2 commit a65b695
Show file tree
Hide file tree
Showing 39 changed files with 38 additions and 51 deletions.
2 changes: 1 addition & 1 deletion harness/Darcs/Test/Shell.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{-# LANGUAGE CPP, OverloadedStrings, ExtendedDefaultRules, RecordWildCards #-}
{-# OPTIONS_GHC -fno-warn-type-defaults #-}
{-# OPTIONS_GHC -Wno-type-defaults #-}
module Darcs.Test.Shell
( Format(..)
, DiffAlgorithm(..)
Expand Down
2 changes: 1 addition & 1 deletion harness/test.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-missing-fields #-}
{-# OPTIONS_GHC -Wno-missing-fields #-}
module Main ( main, run, defaultConfig, Config(..) ) where

import Darcs.Prelude
Expand Down
2 changes: 1 addition & 1 deletion shelly/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ This includes setting line buffering if you are dealing with text and not binary
~~~~~ {.haskell}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ExtendedDefaultRules #-}
{-# OPTIONS_GHC -fno-warn-type-defaults #-}
{-# OPTIONS_GHC -Wno-type-defaults #-}
import Shelly
import Data.Text as T
default (T.Text)
Expand Down
2 changes: 1 addition & 1 deletion shelly/shelly.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Test-Suite shelly-testsuite
WriteSpec

ghc-options: -O2 -Wall -fwarn-tabs -funbox-strict-fields -threaded
-fno-warn-unused-do-bind -fno-warn-type-defaults
-Wno-unused-do-bind -Wno-type-defaults


extensions: OverloadedStrings, ExtendedDefaultRules
Expand Down
4 changes: 2 additions & 2 deletions shelly/src/Shelly.hs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
--
-- > {-# LANGUAGE OverloadedStrings #-}
-- > {-# LANGUAGE ExtendedDefaultRules #-}
-- > {-# OPTIONS_GHC -fno-warn-type-defaults #-}
-- > {-# OPTIONS_GHC -Wno-type-defaults #-}
-- > import Shelly
-- > import qualified Data.Text as T
-- > default (T.Text)
Expand Down Expand Up @@ -211,7 +211,7 @@ instance (CmdArg arg, ShellCmd result) => ShellCmd ([arg] -> result) where
--
-- > {-# LANGUAGE OverloadedStrings #-}
-- > {-# LANGUAGE ExtendedDefaultRules #-}
-- > {-# OPTIONS_GHC -fno-warn-type-defaults #-}
-- > {-# OPTIONS_GHC -Wno-type-defaults #-}
-- > import Shelly
-- > import qualified Data.Text as T
-- > default (T.Text)
Expand Down
4 changes: 2 additions & 2 deletions shelly/src/Shelly/Lifted.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FlexibleInstances, FlexibleContexts, IncoherentInstances,
TypeFamilies, ExistentialQuantification, RankNTypes,
ImpredicativeTypes #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}

-- | A module for shell-like programming in Haskell.
-- Shelly's focus is entirely on ease of use for those coming from shell scripting.
Expand All @@ -18,7 +18,7 @@
--
-- > {-# LANGUAGE OverloadedStrings #-}
-- > {-# LANGUAGE ExtendedDefaultRules #-}
-- > {-# OPTIONS_GHC -fno-warn-type-defaults #-}
-- > {-# OPTIONS_GHC -Wno-type-defaults #-}
-- > import Shelly
-- > import qualified Data.Text as T
-- > default (T.Text)
Expand Down
2 changes: 1 addition & 1 deletion shelly/src/Shelly/Pipe.hs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
--
-- > {-# LANGUAGE OverloadedStrings #-}
-- > {-# LANGUAGE ExtendedDefaultRules #-}
-- > {-# OPTIONS_GHC -fno-warn-type-defaults #-}
-- > {-# OPTIONS_GHC -Wno-type-defaults #-}
-- > import Shelly
-- > import Data.Text as T
-- > default (T.Text)
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
-- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-- Boston, MA 02110-1301, USA.

{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}

module Darcs.Patch
( PrimPatchBase(..)
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/ApplyMonad.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
{-# LANGUAGE FunctionalDependencies #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE UndecidableInstances #-}
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Effect.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-unrecognised-pragmas #-}
{-# OPTIONS_GHC -Wno-unrecognised-pragmas #-}
module Darcs.Patch.Effect ( Effect(..) ) where

import Darcs.Prelude
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Permutations.hs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
-- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-- Boston, MA 02110-1301, USA.

{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}

module Darcs.Patch.Permutations
( removeFL
Expand Down
1 change: 0 additions & 1 deletion src/Darcs/Patch/Prim.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Darcs.Patch.Prim
( PrimApply(..)
, PrimCoalesce(..)
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Prim/FileUUID/Apply.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{-# LANGUAGE MultiParamTypeClasses, OverloadedStrings, UndecidableInstances #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.Prim.FileUUID.Apply ( hunkEdit, ObjectMap(..) ) where

import Darcs.Prelude
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Prim/FileUUID/Commute.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.Prim.FileUUID.Commute () where

import Darcs.Prelude
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Prim/FileUUID/Details.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.Prim.FileUUID.Details
()
where
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Prim/FileUUID/Read.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{-# LANGUAGE ViewPatterns, OverloadedStrings #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.Prim.FileUUID.Read () where

import Darcs.Prelude hiding ( take )
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Prim/FileUUID/Show.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
{-# LANGUAGE OverloadedStrings, UndecidableInstances #-}
module Darcs.Patch.Prim.FileUUID.Show
( displayHunk )
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Prim/V1/Apply.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
{-# LANGUAGE MultiWayIf #-}
module Darcs.Patch.Prim.V1.Apply () where

Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Prim/V1/Coalesce.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
{-# LANGUAGE TupleSections #-}

module Darcs.Patch.Prim.V1.Coalesce
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Prim/V1/Commute.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.Prim.V1.Commute () where

import Darcs.Prelude
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Prim/V1/Details.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.Prim.V1.Details
()
where
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Prim/V1/Mangle.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{-# LANGUAGE ViewPatterns #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.Prim.V1.Mangle () where

import Darcs.Prelude
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Prim/V1/Read.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.Prim.V1.Read () where

import Darcs.Prelude
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Prim/V1/Show.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
{-# LANGUAGE ViewPatterns, UndecidableInstances #-}
module Darcs.Patch.Prim.V1.Show
( showHunk )
Expand Down
3 changes: 0 additions & 3 deletions src/Darcs/Patch/RepoPatch.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
-- Darcs.Prelude import only needed for ~ for GHC 9.10+, so will generate
-- a warning on older GHCs
{-# OPTIONS_GHC -Wno-unused-imports #-}
module Darcs.Patch.RepoPatch
( RepoPatch
, AnnotateRP
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Split.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{-# LANGUAGE ViewPatterns #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -Wno-unused-imports #-}
-- Copyright (C) 2009 Ganesh Sittampalam
--
-- Permission is hereby granted, free of charge, to any person
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/V1/Apply.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.V1.Apply () where

import Darcs.Prelude
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/V1/Commute.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
-- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-- Boston, MA 02110-1301, USA.

{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}

module Darcs.Patch.V1.Commute
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/V1/Read.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.V1.Read () where

import Darcs.Prelude
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/V1/Show.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.V1.Show ( showPatch_ ) where

import Darcs.Prelude
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/V1/Viewing.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.V1.Viewing () where

import Darcs.Prelude
Expand Down
3 changes: 2 additions & 1 deletion src/Darcs/Patch/V2/Non.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
-- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-- Boston, MA 02110-1301, USA.

{-# OPTIONS_GHC -fno-warn-orphans -fno-warn-name-shadowing #-}
{-# OPTIONS_GHC -Wno-orphans #-}
{-# OPTIONS_GHC -Wno-name-shadowing #-}
{-# LANGUAGE UndecidableInstances #-}


Expand Down
3 changes: 1 addition & 2 deletions src/Darcs/Patch/V2/RepoPatch.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
-- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-- Boston, MA 02110-1301, USA.

{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
{-# OPTIONS_GHC -Wno-name-shadowing #-}
{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}

module Darcs.Patch.V2.RepoPatch
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/V3.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.V3 ( RepoPatchV3 ) where

import Darcs.Prelude
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/V3/Resolution.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{- | Conflict resolution for 'RepoPatchV3' -}
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Darcs.Patch.V3.Resolution () where

import qualified Data.Set as S
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Patch/Viewing.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
-- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-- Boston, MA 02110-1301, USA.

{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_GHC -Wno-orphans #-}
{-# LANGUAGE UndecidableInstances #-}
module Darcs.Patch.Viewing
( showContextHunk
Expand Down
7 changes: 0 additions & 7 deletions src/Darcs/Prelude.hs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ If something is needed from the Prelude that's hidden by default, then add
it to the Prelude import.
-}

{-# LANGUAGE CPP #-}
module Darcs.Prelude
( module Prelude
, module Control.Applicative
Expand All @@ -43,11 +42,9 @@ import Prelude hiding
,
-- because it's in the new Prelude but only in Data.Monoid in older GHCs
Monoid(..)
#if MIN_VERSION_base(4,11,0)
,
-- because it's in the new Prelude but only in Data.Semigroup in older GHCs
Semigroup(..)
#endif
,
-- because it's in the new Prelude but only in Data.Traversable in older GHCs
traverse
Expand All @@ -60,10 +57,6 @@ import Prelude hiding
,
-- used by various code for no particularly good reason
lookup, pred
#if MIN_VERSION_base(4,20,0)
, -- because it's in the new Prelude but only in Data.List in older GHCs
foldl'
#endif
)

import Control.Applicative ( Applicative(..), (<$>), (<*>) )
Expand Down
2 changes: 1 addition & 1 deletion src/Darcs/Repository/ApplyPatches.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
-- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-- Boston, MA 02110-1301, USA.

{-# OPTIONS_GHC -fno-warn-missing-methods #-}
{-# OPTIONS_GHC -Wno-missing-methods #-}
{-# LANGUAGE MultiParamTypeClasses #-}

module Darcs.Repository.ApplyPatches
Expand Down
2 changes: 0 additions & 2 deletions src/Darcs/UI/Commands/ShowAuthors.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
-- to suppress an irrelevant warning GHC 9.10 and 9.12
-- NE.unzip is shifting to being monomorphic but our usage already is
{-# OPTIONS_GHC -Wno-x-data-list-nonempty-unzip #-}

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / ubuntu-22.04 / ghc-8.4.4

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / ubuntu-22.04 / ghc-8.6.5

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / ubuntu-22.04 / ghc-8.8.2

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / ubuntu-22.04 / ghc-8.10.7

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / ubuntu-22.04 / ghc-9.0.2

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / ubuntu-22.04 / ghc-9.2.8

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / ubuntu-22.04 / ghc-9.4.8

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / ubuntu-22.04 / ghc-9.6.4

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / macos-13 / ghc-8.4.4

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / macos-13 / ghc-8.6.5

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / macos-13 / ghc-8.8.2

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / macos-13 / ghc-8.10.7

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / macos-13 / ghc-9.0.2

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / macos-13 / ghc-9.2.8

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / macos-13 / ghc-9.4.8

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / macos-13 / ghc-9.6.4

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / windows-2022 / ghc-8.4.4

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / windows-2022 / ghc-8.6.5

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / windows-2022 / ghc-8.8.2

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / windows-2022 / ghc-8.10.7

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / windows-2022 / ghc-9.0.2

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / windows-2022 / ghc-9.2.8

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / windows-2022 / ghc-9.4.8

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip

Check warning on line 20 in src/Darcs/UI/Commands/ShowAuthors.hs

View workflow job for this annotation

GitHub Actions / windows-2022 / ghc-9.6.4

unrecognised warning flag: -Wno-x-data-list-nonempty-unzip
-- to suppress warnings about the above warning flag in other GHCs :-)
{-# OPTIONS_GHC -Wno-unrecognised-warning-flags #-}
module Darcs.UI.Commands.ShowAuthors
( showAuthors, Spelling, compiledAuthorSpellings, canonizeAuthor, rankAuthors
) where
Expand Down

0 comments on commit a65b695

Please sign in to comment.