github.com/crowdsecurity/crowdsec@v1.6.1/.gitignore (about) 1 # Binaries for programs and plugins 2 *.exe 3 *.exe~ 4 *.dll 5 *.so 6 *.dylib 7 *~ 8 .pc 9 10 # IDEs 11 .vscode 12 .idea 13 14 # If vendor is included, allow prebuilt (wasm?) libraries. 15 !vendor/**/*.so 16 17 # Test binaries, built with `go test -c` 18 *.test 19 *.cover 20 21 # Test dependencies 22 test/tools/* 23 24 # VMs used for dev/test 25 26 .vagrant 27 28 # Test binaries, built from *_test.go 29 pkg/csplugin/tests/cs_plugin_test* 30 31 # Output of go-acc, go -cover 32 *.out 33 test/coverage/* 34 35 # Development artifacts, backups, etc 36 *.swp 37 *.swo 38 39 # Dependencies are not vendored by default, but a tarball is created by "make vendor" 40 # and provided in the release. Used by gentoo, etc. 41 vendor/ 42 vendor.tgz 43 44 # crowdsec binaries 45 cmd/crowdsec-cli/cscli 46 cmd/crowdsec/crowdsec 47 cmd/notification-*/notification-* 48 49 # Test cache (downloaded files) 50 .cache 51 52 # Release stuff 53 crowdsec-v* 54 msi 55 *.msi 56 **/*.nupkg 57 *.tgz 58 59 # Python 60 __pycache__ 61 *.py[cod] 62 *.egg-info