We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 2520a0bCopy full SHA for 2520a0b
.gitignore
@@ -0,0 +1,41 @@
1
+# Ignore vscode
2
+*.vscode*
3
+
4
+# Ignore vim undo file
5
+*.un~
6
7
+# Compiled Object files
8
+*.slo
9
+*.lo
10
+*.o
11
12
+# Compiled Dynamic libraries
13
+*.so
14
+*.dylib
15
16
+# Compiled Static libraries
17
+*.lai
18
+*.la
19
+*.a
20
21
+# Ignore graph dataset files
22
+*.graph
23
+*.mtx*
24
25
+# Ignore tarball
26
+*.tar.gz
27
28
+# Ignore bin directory
29
+bin/
30
31
+# Ignore eval directory
32
+eval/
33
34
+# Ignore vim temp files
35
+*.sw~
36
37
+# Ignore build directory
38
+build
39
40
+# Ignore external fetched content
41
+externals/*
0 commit comments