Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions hie.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ cradle:
component: "bench:Data.Parser"
- path: "./benchmark/Streamly/Benchmark/Data/ParserK.hs"
component: "bench:Data.ParserK"
- path: "./benchmark/Streamly/Benchmark/Data/StreamK.hs"
component: "bench:Data.StreamK"
- path: "./benchmark/Streamly/Benchmark/Data/StreamK/FromStream.hs"
component: "bench:Data.StreamK.FromStream"
- path: "./benchmark/Streamly/Benchmark/Data/Stream/Common.hs"
component: "bench:Data.Stream"
- path: "./benchmark/Streamly/Benchmark/Data/Stream/Concurrent.hs"
Expand All @@ -50,10 +46,10 @@ cradle:
component: "bench:Data.Stream.ConcurrentEager"
- path: "./benchmark/Streamly/Benchmark/Data/Stream/Eliminate.hs"
component: "bench:Data.Stream"
- path: "./benchmark/Streamly/Benchmark/Data/Stream/Expand.hs"
component: "bench:Data.Stream"
- path: "./benchmark/Streamly/Benchmark/Data/Stream/Exceptions.hs"
component: "bench:Data.Stream"
- path: "./benchmark/Streamly/Benchmark/Data/Stream/Expand.hs"
component: "bench:Data.Stream"
- path: "./benchmark/Streamly/Benchmark/Data/Stream/Generate.hs"
component: "bench:Data.Stream"
- path: "./benchmark/Streamly/Benchmark/Data/Stream/Lift.hs"
Expand All @@ -64,6 +60,10 @@ cradle:
component: "bench:Data.Stream"
- path: "./benchmark/Streamly/Benchmark/Data/Stream/Transform.hs"
component: "bench:Data.Stream"
- path: "./benchmark/Streamly/Benchmark/Data/StreamK.hs"
component: "bench:Data.StreamK"
- path: "./benchmark/Streamly/Benchmark/Data/StreamK/FromStream.hs"
component: "bench:Data.StreamK.FromStream"
- path: "./benchmark/Streamly/Benchmark/Data/Unfold.hs"
component: "bench:Data.Unfold"
- path: "./benchmark/Streamly/Benchmark/FileSystem/Handle/Read.hs"
Expand Down Expand Up @@ -94,34 +94,38 @@ cradle:
config:
cradle:
cabal:
- path: "./test/lib/"
component: "lib:streamly-tests"
- path: "./test/Streamly/Test/Data/Array.hs"
component: "test:Data.Array"
- path: "./test/Streamly/Test/Data/Stream.hs"
component: "test:Data.Stream"
- path: "./test/Streamly/Test/Data/Stream/Time.hs"
component: "test:Data.Stream.Time"
- path: "./test/Streamly/Test/Data/Array/Generic.hs"
component: "test:Data.Array.Generic"
- path: "./test/Streamly/Test/Data/MutArray.hs"
component: "test:Data.MutArray"
- path: "./test/Streamly/Test/Data/Array/Stream.hs"
component: "test:Data.Array.Stream"
- path: "./test/Streamly/Test/Data/Fold.hs"
component: "test:Data.Fold"
- path: "./test/Streamly/Test/Data/Fold/Window.hs"
component: "test:Data.Fold.Window"
- path: "./test/Streamly/Test/Data/List.hs"
component: "test:Data.List"
- path: "./test/Streamly/Test/Data/MutArray.hs"
component: "test:Data.MutArray"
- path: "./test/Streamly/Test/Data/Parser.hs"
component: "test:Data.Parser"
- path: "./test/Streamly/Test/Data/Parser/Common.hs"
component: "test:Data.Parser"
- path: "./test/Streamly/Test/Data/ParserK.hs"
component: "test:Data.ParserK"
- path: "./test/Streamly/Test/Data/Stream.hs"
component: "test:Data.Stream"
- path: "./test/Streamly/Test/Data/Stream/Common.hs"
component: "test:Data.Stream.Concurrent"
- path: "./test/Streamly/Test/Data/Stream/Concurrent.hs"
component: "test:Data.Stream.Concurrent"
- path: "./test/Streamly/Test/Data/Stream/Exception.hs"
component: "test:Data.Stream.Exception"
- path: "./test/Streamly/Test/Data/Stream/Time.hs"
component: "test:Data.Stream.Time"
- path: "./test/Streamly/Test/Data/Unbox.hs"
component: "test:Data.Unbox"
- path: "./test/Streamly/Test/Data/Unfold.hs"
Expand All @@ -132,12 +136,12 @@ cradle:
component: "test:FileSystem.Event"
- path: "./test/Streamly/Test/FileSystem/Event/Common.hs"
component: "test:FileSystem.Event"
- path: "./test/Streamly/Test/FileSystem/Event/Darwin.hs"
component: "test:FileSystem.Event.Darwin"
- path: "./test/Streamly/Test/FileSystem/Event/Linux.hs"
component: "test:FileSystem.Event.Linux"
- path: "./test/Streamly/Test/FileSystem/Event/Windows.hs"
component: "test:FileSystem.Event.Windows"
- path: "./test/Streamly/Test/FileSystem/Event/Darwin.hs"
component: "test:FileSystem.Event.Darwin"
- path: "./test/Streamly/Test/FileSystem/Handle.hs"
component: "test:FileSystem.Handle"
- path: "./test/Streamly/Test/Network/Inet/TCP.hs"
Expand Down Expand Up @@ -168,18 +172,14 @@ cradle:
component: "test:Prelude.ZipAsync"
- path: "./test/Streamly/Test/Prelude/ZipSerial.hs"
component: "test:Prelude.ZipSerial"
- path: "./test/Streamly/Test/Unicode/Stream.hs"
component: "test:Unicode.Stream"
- path: "./test/Streamly/Test/Unicode/Parser.hs"
component: "test:Unicode.Parser"
- path: "./test/Streamly/Test/Serialize/Serializable.hs"
component: "test:Serialize.Serializable"
- path: "./test/lib/"
component: "lib:streamly-tests"
- path: "./test/Streamly/Test/Unicode/Parser.hs"
component: "test:Unicode.Parser"
- path: "./test/Streamly/Test/Unicode/Stream.hs"
component: "test:Unicode.Stream"
- path: "./test/version-bounds.hs"
component: "test:version-bounds"
- path: "./test/Streamly/Test/Data/Fold/Window.hs"
component: "test:Data.Fold.Window"

dependencies:
- streamly.cabal
Expand Down
33 changes: 33 additions & 0 deletions hls.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# specified in hie.yaml
#cradle:
# cabal:
# - path: "./src"
# component: "lib:streamly"

plugins:
brittany:
globalOn: false
floskell:
globalOn: false
fourmolu:
globalOn: false
ormolu:
globalOn: false
stylish-haskell:
globalOn: false
retrie:
globalOn: false
eval:
globalOn: false
haddockComments:
globalOn: false
pragmas:
globalOn: false
refineImports:
globalOn: false
rename:
globalOn: false
tactic:
globalOn: false
hlint:
globalOn: false
Loading