Add .ghci configuration file

Create a project-local .ghci file to define sensible
defaults (e.g. -Wincomplete-patterns).

TODO: Discover more GHC options to put in this file.

I would prefer to keep this at the project root, but because I'm running the
project from the src directory, I need to keep .ghci there.
This commit is contained in:
William Carroll 2020-08-03 11:37:57 +01:00
parent b9ed4a2dc1
commit 9a19942c03

2
src/.ghci Normal file
View file

@ -0,0 +1,2 @@
:set prompt "> "
:set -Wincomplete-patterns