Skip to content

Commit 98dd4ff

Browse files
committed
style: Apply formatting
1 parent a9f2d37 commit 98dd4ff

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

cloudevents-haskell.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cabal-version: 2.2
55
-- see: https://github.com/sol/hpack
66

77
name: cloudevents-haskell
8-
version: 0.1.0.0
8+
version: 0.2.0.0
99
synopsis: Unofficial Haskell SDK for the CloudEvents specification
1010
description: See the README on GitHub at <https://github.com/freckle/cloudevents-haskell#readme>
1111
category: Utils

library/Freckle/CloudEvent/V1/Bindings/Kafka.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import Autodocodec
2727
, requiredField'
2828
, (.=)
2929
)
30-
import Freckle.CloudEvent.V1.Event.Internal.Data (CloudEvent (..))
3130
import Data.Aeson (FromJSON, ToJSON, encode)
3231
import Data.Binary (Binary)
3332
import Data.ByteString (ByteString)
@@ -36,6 +35,7 @@ import Data.Maybe (catMaybes)
3635
import Data.String (IsString (..))
3736
import Data.Text (Text)
3837
import Data.Text.Encoding (encodeUtf8)
38+
import Freckle.CloudEvent.V1.Event.Internal.Data (CloudEvent (..))
3939
import GHC.Generics (Generic)
4040
import GHC.Records (HasField)
4141
import Iri.Rendering.Text (iri)

library/Freckle/CloudEvent/V1/Event/Data.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ import Autodocodec
1313
, HasObjectCodec (objectCodec)
1414
, object
1515
)
16-
import Freckle.CloudEvent.V1.Event.Internal.Data (CloudEvent (..))
1716
import Data.Aeson (FromJSON, ToJSON)
1817
import Data.Binary (Binary)
1918
import Data.Text (Text)
2019
import Data.Time (UTCTime)
20+
import Freckle.CloudEvent.V1.Event.Internal.Data (CloudEvent (..))
2121
import GHC.Generics (Generic)
2222
import Iri.Data (Iri)
2323

library/Freckle/CloudEvent/V1/Event/Internal/Data.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ import Autodocodec
1313
, requiredField'
1414
, (.=)
1515
)
16-
import Freckle.CloudEvent.V1.Event.Internal.Orphans ()
1716
import Data.Aeson (FromJSON, ToJSON)
1817
import Data.Binary (Binary)
1918
import Data.Text (Text)
2019
import Data.Time (UTCTime)
20+
import Freckle.CloudEvent.V1.Event.Internal.Orphans ()
2121
import GHC.Generics (Generic)
2222
import Iri.Data (Iri)
2323

library/Freckle/CloudEvent/V1/Event/Lens.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
module Freckle.CloudEvent.V1.Event.Lens where
55

6-
import Freckle.CloudEvent.V1.Event.Data (CloudEvent)
76
import Control.Lens (makeLensesFor)
7+
import Freckle.CloudEvent.V1.Event.Internal.Data (CloudEvent)
88

99
makeLensesFor
1010
[ ("ceId", "_ceId")

library/Freckle/CloudEvent/V1/Event/Validation.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import Prelude
88

99
import Autodocodec (HasCodec, HasObjectCodec)
1010
import Autodocodec.Schema (jsonSchemaViaCodec, validateAccordingTo)
11-
import Freckle.CloudEvent.V1.Event.Data (CloudEvent)
1211
import Data.Aeson (Value)
1312
import Data.Kind (Type)
13+
import Freckle.CloudEvent.V1.Event.Data (CloudEvent)
1414

1515
-- | Validates that a JSON value conforms to a specific CloudEvents specification.
1616
-- Requires the event data type and extension attributes to be specified as type applications with the event data type first.

0 commit comments

Comments
 (0)