Skip to content

Commit

Permalink
List dependencies one per line (KSG Cabal 1.3.0 - 3.7.3). Refs #196.
Browse files Browse the repository at this point in the history
Packages listed in fields such as build-depends should always be listed
one package per line, with the comma that separates items being the
character in the line.
  • Loading branch information
ivanperez-keera committed Mar 13, 2022
1 parent 012049c commit 8a918e2
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions yampa-test/yampa-test.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -70,25 +70,26 @@ library
FRP.Yampa.LTLPast
FRP.Yampa.QuickCheck
FRP.Yampa.Stream
build-depends: base >=4 && <5,
Yampa >= 0.13.3 && < 0.14,
QuickCheck,
normaldistribution
build-depends:
base >=4 && <5
, normaldistribution
, QuickCheck
, Yampa >= 0.13.3 && < 0.14
default-language: Haskell2010
hs-source-dirs: src

test-suite yampa-quicheck
type: exitcode-stdio-1.0
main-is: YampaQC.hs
build-depends:
base < 5,
random,
Cabal >= 1.19,
QuickCheck,
tasty,
tasty-quickcheck,
Yampa,
yampa-test
base < 5
, Cabal >= 1.19
, QuickCheck
, random
, tasty
, tasty-quickcheck
, Yampa
, yampa-test
default-language: Haskell2010
hs-source-dirs: tests
ghc-options: -Wall

0 comments on commit 8a918e2

Please sign in to comment.