From e146d672ea4c00fe17018e7e76e49d59570eeb2b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 31 Jan 2021 18:16:00 -0800 Subject: [PATCH] Add `default-language` field --- hindent.cabal | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hindent.cabal b/hindent.cabal index 8ef851b5d..165228851 100644 --- a/hindent.cabal +++ b/hindent.cabal @@ -29,6 +29,7 @@ source-repository head library hs-source-dirs: src/ ghc-options: -Wall -O2 + default-language: Haskell2010 exposed-modules: HIndent HIndent.Types HIndent.Pretty @@ -52,6 +53,7 @@ library executable hindent hs-source-dirs: src/main ghc-options: -Wall -O2 + default-language: Haskell2010 main-is: Main.hs other-modules: Path.Find build-depends: base >= 4 && < 5 @@ -74,6 +76,7 @@ executable hindent test-suite hindent-test type: exitcode-stdio-1.0 hs-source-dirs: src/main/ + default-language: Haskell2010 main-is: Test.hs other-modules: Markdone build-depends: base >= 4 && <5 @@ -93,6 +96,7 @@ test-suite hindent-test benchmark hindent-bench type: exitcode-stdio-1.0 hs-source-dirs: src/main + default-language: Haskell2010 ghc-options: -Wall -O2 -rtsopts main-is: Benchmark.hs other-modules: Markdone