-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path.gitignore
55 lines (42 loc) · 880 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
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, build with `go test -c`
*.test
# Profiling results
*.prof
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
*.log
.idea/
vendor/
cmd/device-rfid-llrp
glide.lock
coverage.out
VERSION
# Very Important: This line is needed to keep your credentials from being checked into github.
**/.env
# Binaries for programs and plugins
main
DEVNULL
test.txt
.vscode/*# Output of the go coverage tool, specifically when used with LiteIDE
logs/*
logs/
#Do not include any python cache or compiled files
**/*.pyc
**/__pycache__
venv
#Skip the reports generated by robot
**/reports
**/*.xml
**/*.html
# Don't save _every_ RO report
internal/llrp/testdata/**/*.json
internal/llrp/testdata/**/*.bytes
!internal/llrp/testdata/roAccessReports/*-00?*
#do not track vscode
.vscode/*