github.com/nspcc-dev/neo-go@v0.105.2-0.20240517133400-6be757af3eba/.gitignore (about) 1 # Binaries for programs and plugins 2 *.exe 3 *.dll 4 *.so 5 *.dylib 6 7 # Test binary, build with `go test -c` 8 *.test 9 10 # Added by CoZ developers 11 vendor/ 12 bin/ 13 !examples/**/vendor 14 15 # text editors 16 # vscode 17 .vscode/* 18 !.vscode/settings.json 19 !.vscode/tasks.json 20 !.vscode/launch.json 21 !.vscode/extensions.json 22 # goland 23 .idea/* 24 # emacs 25 *~ 26 TAGS 27 28 # storage 29 /chains 30 31 # patch 32 *.orig 33 *.rej 34 35 # Coverage 36 coverage.txt 37 coverage.html 38 39 # Compiler output 40 examples/*/*.nef 41 examples/*/*.json 42 43 # Fuzzing testdata. 44 testdata/ 45 !cli/testdata 46 !internal/basicchain/testdata 47 !pkg/compiler/testdata 48 !pkg/config/testdata 49 !pkg/consensus/testdata 50 !pkg/services/rpcsrv/testdata 51 !pkg/services/notary/testdata 52 !pkg/services/oracle/testdata 53 !pkg/smartcontract/testdata 54 !cli/smartcontract/testdata 55 pkg/vm/testdata/fuzz 56 !pkg/vm/testdata 57 !pkg/wallet/testdata