...
1# Binaries for programs and plugins
2*.exe
3*.dll
4*.so
5*.dylib
6
7# Ignore vscode setting files
8.vscode/
9.idea/
10
11# Test binary, build with `go test -c`
12*.test
13
14# Output of the go coverage tool, specifically when used with LiteIDE
15*.out
16
17# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
18.glide/
19
20# Ignore gcs bin directory
21service/bin/
22service/pkg/
23
24*.img
25*.vhd
26*.tar.gz
27*.tar
28
29# Make stuff
30.rootfs-done
31bin/*
32rootfs/*
33rootfs-conv/*
34*.o
35/build/
36
37deps/*
38out/*
39
40# protobuf files
41# only files at root of the repo, otherwise this will cause issues with vendoring
42/protobuf/*
43
44# test results
45test/results
46
47# go workspace files
48go.work
49go.work.sum
50
51# keys and related artifacts
52*.pem
53*.cose
View as plain text