| License | BSD-3-Clause |
|---|---|
| Safe Haskell | None |
| Language | GHC2024 |
Stack.Types.Curator
Description
Module exporting the Curator type, used to represent Stack's project-specific
curator option, which supports the needs of the
curator tool.
Synopsis
- data Curator = Curator {
- skipTest :: !(Set PackageName)
- expectTestFailure :: !(Set PackageName)
- skipBenchmark :: !(Set PackageName)
- expectBenchmarkFailure :: !(Set PackageName)
- skipHaddock :: !(Set PackageName)
- expectHaddockFailure :: !(Set PackageName)
Documentation
Type representing configuration options which support the needs of the
curator tool.
Constructors
| Curator | |
Fields
| |
Instances
| ToJSON Curator Source # | |
Defined in Stack.Types.Curator Methods toEncoding :: Curator -> Encoding toJSONList :: [Curator] -> Value toEncodingList :: [Curator] -> Encoding | |
| Show Curator Source # | |
| FromJSON (WithJSONWarnings Curator) Source # | |
Defined in Stack.Types.Curator Methods parseJSON :: Value -> Parser (WithJSONWarnings Curator) parseJSONList :: Value -> Parser [WithJSONWarnings Curator] | |