From 8a918e2909d3395d72d890a1ccd7a6f4b71fdc7b Mon Sep 17 00:00:00 2001 From: Ivan Perez Date: Sun, 13 Mar 2022 03:39:20 -0400 Subject: [PATCH] List dependencies one per line (KSG Cabal 1.3.0 - 3.7.3). Refs #196. 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. --- yampa-test/yampa-test.cabal | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/yampa-test/yampa-test.cabal b/yampa-test/yampa-test.cabal index bcfd27df..367d4038 100644 --- a/yampa-test/yampa-test.cabal +++ b/yampa-test/yampa-test.cabal @@ -70,10 +70,11 @@ 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 @@ -81,14 +82,14 @@ 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