diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-08-26 17:36:17 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-08-26 17:37:06 -0700 |
commit | ffbd690cbc2ddcc6fe7e191bb80602d91ae51fae (patch) | |
tree | 9dfa8e8793926cb588e0b8b43b313a46634ee542 | |
parent | cd4b8f66bb81693433ae9d151b27d3dd540c18f4 (diff) | |
download | pandoc-ffbd690cbc2ddcc6fe7e191bb80602d91ae51fae.tar.gz |
Simplify stack.yaml after cabal file changes.
We don't need so many local ghc options now that they're
specified in pandoc.cabal.
I've kept `-fhide-source-paths` (in case we move this out
of pandoc.cabal) and `-Wno-missing-home-modules` (which seems
to be needed for `stack ghci` to work).
-rw-r--r-- | stack.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stack.yaml b/stack.yaml index bec6cd26a..ff78ca549 100644 --- a/stack.yaml +++ b/stack.yaml @@ -27,5 +27,5 @@ extra-deps: - git: https://github.com/jgm/doctemplates commit: 2f7e7ea71d75b58b52f7ee4122b43aa5d5f68445 ghc-options: - "$locals": -Wall -fno-warn-unused-do-bind -Wincomplete-record-updates -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances -Wincomplete-uni-patterns -Widentities -Wcpp-undef -fhide-source-paths -Wno-missing-home-modules + "$locals": -fhide-source-paths -Wno-missing-home-modules resolver: lts-13.17 |