-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
54 lines (40 loc) · 836 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
# ignore python3 bytecode cache
__pycache__/
# ignore test coverage report
.coverage
# ignore python3 bytecode files
*.pyc
# ignore tags file generated by Ctags (https://en.wikipedia.org/wiki/Ctags)
tags
# ignore C++ executables and library files
*.out
*.a
# ignore Cmake temporary files
CMakeFiles/
CMakeCache.txt
*.cmake
cpp_src/compile_commands.json
# exclude must be absolute since Makefiles are required for some Travis builds
/cpp_src/Makefile
# ignore catch temporary files
cpp_src/Testing
# ignore C temp files, object files, etc.
*.gcda
*.gcno
*.o
*.gcov
# ignore js coverage reports
coverage/
# ignore cpp coverage reports
coverage.info
# ignore rust dev binaries
rust_src/target
# projecteuler.net recovery key
.recovery
# node modules
node_modules/
# Ninja stiff
.ninja_deps
.ninja_log
build.ninja
rules.ninja