Skip to content

Commit

Permalink
Add .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
swtwsk committed Oct 16, 2019
1 parent 9f1f0bc commit aca3717
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Ignore all
*

# Unignore all with extensions and dirs
!*.*
!*/

# Ignore Haskell object files
*.hi
*.o
*.bak

# Unignore Makefile
!Makefile

# Unignore LICENSE
!LICENSE

# Ignore OSX specific files
.DS_Store

# Ignore BNFC folder
bnfc/
!bnfc/*.cf

# Ignore idea
.idea/
.stack-work/

# Ignore vscode
.vscode/

0 comments on commit aca3717

Please sign in to comment.