mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-09 07:03:11 +00:00
Improve cabal hacking experience (#215)
* Add standard haskell gitignore entries * Add cradles for using HLS with Cabal Co-authored-by: David Himmelstrup <lemmih@gmail.com>
This commit is contained in:
parent
5c0eb70584
commit
aadf8dcee5
2 changed files with 35 additions and 4 deletions
24
.gitignore
vendored
24
.gitignore
vendored
|
|
@ -1 +1,23 @@
|
|||
.stack-work
|
||||
dist
|
||||
dist-*
|
||||
cabal-dev
|
||||
*.o
|
||||
*.hi
|
||||
*.hie
|
||||
*.chi
|
||||
*.chs.h
|
||||
*.dyn_o
|
||||
*.dyn_hi
|
||||
.hpc
|
||||
.hsenv
|
||||
.cabal-sandbox/
|
||||
cabal.sandbox.config
|
||||
*.prof
|
||||
*.aux
|
||||
*.hp
|
||||
*.eventlog
|
||||
.stack-work/
|
||||
cabal.project.local
|
||||
cabal.project.local~
|
||||
.HTF/
|
||||
.ghc.environment.*
|
||||
15
hie.yaml
15
hie.yaml
|
|
@ -1,11 +1,20 @@
|
|||
cradle:
|
||||
multi:
|
||||
- path: "./src"
|
||||
config: {cradle: {stack: {component: "reanimate:lib"}} }
|
||||
config:
|
||||
cradle:
|
||||
stack: {component: "reanimate:lib"}
|
||||
cabal: {component: "lib:reanimate"}
|
||||
- path: "./videos"
|
||||
config: {cradle: {stack: {component: "reanimate:lib"}} }
|
||||
config:
|
||||
cradle:
|
||||
stack: {component: "reanimate:lib"}
|
||||
cabal: {component: "lib:reanimate"}
|
||||
- path: "./examples"
|
||||
config: {cradle: {stack: {component: "reanimate:lib"}} }
|
||||
config:
|
||||
cradle:
|
||||
stack: {component: "reanimate:lib"}
|
||||
cabal: {component: "lib:reanimate"}
|
||||
- path: "./test"
|
||||
config: {cradle: {none: }}
|
||||
- path: "./discord-bot"
|
||||
|
|
|
|||
Loading…
Reference in a new issue