We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b195db0 commit d80a1afCopy full SHA for d80a1af
parser/.gitignore
@@ -0,0 +1,54 @@
1
+# Compiled Object files
2
+*.o
3
+*.obj
4
+
5
+# Precompiled Header files
6
+*.gch
7
+*.pch
8
9
+# Compiled Dynamic libraries
10
+*.so
11
+*.dylib
12
+*.dll
13
14
+# Compiled Static libraries
15
+*.a
16
+*.lib
17
18
+# Executable files
19
+scanner
20
+*.exe
21
+*.out
22
23
+# Debug files
24
+*.dSYM/
25
+*.stackdump
26
27
+# Temporary files and backups
28
+*.tmp
29
+*.swp
30
+*.bak
31
+*.log
32
33
+# OS generated files
34
+.DS_Store
35
+Thumbs.db
36
37
+# C++ cache files and directories
38
+*.cache
39
+.cache/
40
+*.ccache
41
+.ccache/
42
43
+# Visual Studio Code workspace settings
44
+.vscode/
45
+*.code-workspace
46
47
+# CLion and JetBrains IDE files
48
+.idea/
49
+cmake-build-*/
50
51
+# Ignore binary and debug folders
52
+bin/
53
+debug/
54
+release/
0 commit comments