From 596c76063f5bbfc602682b8d4effbaa5ce39a42e Mon Sep 17 00:00:00 2001 From: Evan Rutledge Borden Date: Sun, 26 Jul 2020 15:05:40 -0500 Subject: [PATCH] Add hie.yaml generated for gen-hie This file is required to run `haskell-language-server` properly. Without this file `hie` does not know which `main` target to utilize. Related `haskell-language-server` issue: https://github.com/haskell/haskell-language-server/issues/233 --- hie.yaml | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 hie.yaml diff --git a/hie.yaml b/hie.yaml new file mode 100644 index 0000000..1234f53 --- /dev/null +++ b/hie.yaml @@ -0,0 +1,46 @@ +cradle: + stack: + - path: "./library" + component: "asana:lib" + + - path: "./bug-reproduction/Main.hs" + component: "asana:exe:bug-reproduction" + + - path: "./bug-reproduction/Paths_asana.hs" + component: "asana:exe:bug-reproduction" + + - path: "./close-iteration/Main.hs" + component: "asana:exe:close-iteration" + + - path: "./close-iteration/Paths_asana.hs" + component: "asana:exe:close-iteration" + + - path: "./cycle-time/Main.hs" + component: "asana:exe:cycle-time" + + - path: "./cycle-time/Paths_asana.hs" + component: "asana:exe:cycle-time" + + - path: "./debt-evaluation/Main.hs" + component: "asana:exe:debt-evaluation" + + - path: "./debt-evaluation/Paths_asana.hs" + component: "asana:exe:debt-evaluation" + + - path: "./planning-poker/Main.hs" + component: "asana:exe:planning-poker" + + - path: "./planning-poker/Paths_asana.hs" + component: "asana:exe:planning-poker" + + - path: "./start-iteration/Main.hs" + component: "asana:exe:start-iteration" + + - path: "./start-iteration/Paths_asana.hs" + component: "asana:exe:start-iteration" + + - path: "./update-task/Main.hs" + component: "asana:exe:update-task" + + - path: "./update-task/Paths_asana.hs" + component: "asana:exe:update-task"