mirror of
https://github.com/facebook/duckling.git
synced 2024-11-24 07:23:03 +03:00
01b812b69c
Summary: This PR accomplishes several things: - removes dist-newstyle (local build artifacts should not be checked in) - extends the .gitignore to include many common build artifacts/editor artifacts - allow more modern dependencies (upper bounds of many were out of date by one or two years' worth of releases) - upgrade stack lts (9.2 -> 14.2) to GHC 8.6.5 - regenerate .travis.yml using the now-standard haskell-ci (many haskell core libraries use this), instead of the outdated script that was maintained by hvr; as a precursor to this, the tested-with versions were updated Reviewed By: patapizza Differential Revision: D24623967 fbshipit-source-id: 838fe571df0b8d44106349659ce8ce8ab82f0bc6
50 lines
448 B
Plaintext
50 lines
448 B
Plaintext
# object files
|
|
*.a
|
|
*.o
|
|
*.so
|
|
|
|
# haskell stuff
|
|
.ghc.environment.*
|
|
dist
|
|
dist-*
|
|
cabal-dev
|
|
*.chi
|
|
*.chs.h
|
|
*.dyn_o
|
|
*.dyn_hi
|
|
*.prof
|
|
*.hp
|
|
*.eventlog
|
|
.cabal-sandbox/
|
|
cabal.sandbox.config
|
|
cabal.config
|
|
cabal.project.local
|
|
.HTF/
|
|
.stack-work/
|
|
stack.yaml.lock
|
|
|
|
# vim stuff
|
|
[._]*.s[a-v][a-z]
|
|
[._]*.sw[a-p]
|
|
[._]s[a-v][a-z]
|
|
[._]sw[a-p]
|
|
*~
|
|
|
|
# nix stuff
|
|
result
|
|
result-*
|
|
*.hi
|
|
|
|
# make/latexmk stuff
|
|
.makefile
|
|
*.aux
|
|
*.fdb_latexmk
|
|
*.fls
|
|
*.log
|
|
*.out
|
|
|
|
# misc
|
|
tags
|
|
log
|
|
.idea
|