-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
70 lines (61 loc) · 802 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Ignore build directories
/build/
/out/
/bin/
/lib/
/obj/
/mnxvalidate/
# Ignore build tools and temporary files
CMakeFiles/
CMakeCache.txt
Makefile
CMakeLists.txt.user
*.o
*.obj
*.so
*.dll
*.dylib
*.exe
*.a
*.lib
# Ignore generated files
*.class
*.gen.cpp
*.moc.cpp
*.moc
*.qrc
*.rcc
# Ignore log and debugging files
*.log
*.tmp
*.bak
*.swp
*.swo
*.pid
# Ignore IDE/editor-specific files
.idea/
.vscode/
*.code-workspace
*.sln
*.vcxproj*
*.user
*.DS_Store
*.vscode/
*.vs/
Thumbs.db
# Ignore system files
*.gz
*.zip
*.tar.gz
*.tar.bz2
*.tar
*.tgz
*.tar.xz
callgrind.out.*
# Ignore everything in tests/data
tests/data/*
# Allow tests/data/inputs and its contents
!tests/data/inputs/
!tests/data/inputs/**
# Explicitly exclude unwanted files in tests/data/inputs
tests/data/inputs/**/.DS_Store