Skip to content

Commit fe81158

Browse files
committed
chore: Add gitignore
1 parent 4709b09 commit fe81158

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Created by https://www.gitignore.io/api/linux,vim,crystal
2+
3+
### Linux ###
4+
*~
5+
6+
# temporary files which can be created if a process still has a handle open of a deleted file
7+
.fuse_hidden*
8+
9+
# KDE directory preferences
10+
.directory
11+
12+
# Linux trash folder which might appear on any partition or disk
13+
.Trash-*
14+
15+
# .nfs files are created when an open file is removed but is still being accessed
16+
.nfs*
17+
18+
19+
### Vim ###
20+
# swap
21+
[._]*.s[a-v][a-z]
22+
[._]*.sw[a-p]
23+
[._]s[a-v][a-z]
24+
[._]sw[a-p]
25+
# session
26+
Session.vim
27+
# temporary
28+
.netrwhist
29+
# auto-generated tag files
30+
tags
31+
32+
33+
### Crystal ###
34+
/.shards/
35+
/lib/
36+
/doc/
37+
38+
39+
# Libraries don't need dependency lock
40+
# Dependencies will be locked in application that uses them
41+
# Uncomment the line below if you are creating a library.
42+
/shard.lock
43+
44+
# End of https://www.gitignore.io/api/linux,vim,crystal

0 commit comments

Comments
 (0)