Skip to content

Commit

Permalink
.gitignore: Make it more specific
Browse files Browse the repository at this point in the history
Long story, but in particular, result* could match a source file like
Result.hs on case-insensitive filesystems (i.e. macOS).
  • Loading branch information
rvl committed Sep 13, 2021
1 parent 56da511 commit b19f833
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .gitignore
Expand Up @@ -16,24 +16,24 @@
*.eventlog

### Cabal ###
dist
dist-*
/dist
/dist-*
.ghc.environment.*
cabal*.project.local*
/cabal*.project.local*

### Stack ###
.stack-work/
stack.yaml.lock
/stack.yaml.lock
.HTF/

### Local configs ###
.ghci
hie.yaml

### Nix ###
result*
.stack-to-nix.cache
.nix-shell-cabal.project*
/result*
/.stack-to-nix.cache
/.nix-shell-cabal.project*

### Direnv ###
.envrc-local
Expand Down

0 comments on commit b19f833

Please sign in to comment.