Skip to content

Commit f96b609

Browse files
committed
be lenient with some warnings
1 parent 7abd485 commit f96b609

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

timeseries-io/app/Main.hs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,7 @@ main = do
3131
Left err -> die err
3232
Right expr -> do
3333
print expr
34-
print $ interp store expr 15
34+
35+
-- no instance Show Value
36+
-- print $ interp store expr 15
3537

timeseries-io/timeseries-io.cabal

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,13 @@ extra-doc-files: CHANGELOG.md
5252

5353
common warnings
5454
ghc-options: -Wall
55+
56+
-- to ease development only
57+
-Wno-unused-matches
58+
-Wno-unused-top-binds
59+
-Wno-unused-local-binds
60+
-Wno-unused-imports
61+
5562

5663
executable timeseries-io
5764
-- Import common warning flags.

0 commit comments

Comments
 (0)