-
Notifications
You must be signed in to change notification settings - Fork 485
Expand file tree
/
Copy path.gitignore
More file actions
52 lines (42 loc) · 1020 Bytes
/
.gitignore
File metadata and controls
52 lines (42 loc) · 1020 Bytes
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
# .check* files are needed so .PHONY dependencies in makefile aren't
# built each time you try to make the target (only if the target
# dependencies, like source files, changed)
.check*
# .eval_* files are placeholders as .check* above, but focused on
# the evaluation of the target, not failing the build if the target
# is not found
.eval_*
# .build_* files exist to avoid rebuilding the targets that they are
# associated with.
.build_*
# needed for the makefile btfhub building logic
*.md5
# ignore clangd files
.clangd
# ignore local and temporary packaging files
debian
.ubuntu*
.package*
tracee.spec
# ignore Helm subcharts
deploy/helm/tracee/charts/
# dev related files
.vscode
.idea
coverage.txt
integration-coverage.txt
coverage.html
compile_commands.json
.cache*
.trunk*
.vagrant
goenv.mk
# binaries and build files
dist
*.o
# release files
release_notes.txt
# Cursor rules - personal development configurations
.cursor/rules/**
!.cursor/rules/shell-style-guide.mdc
!.cursor/rules/testing-guide.mdc