github.com/consensys/gnark@v0.11.0/.gitignore (about) 1 **/.DS_Store 2 **/*.zip 3 4 # Binaries for programs and plugins 5 *.exe 6 *.exe~ 7 *.dll 8 *.so 9 *.dylib 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 old*.txt 18 new*.txt 19 *.prof 20 *.pprof 21 tasks.txt 22 **/ref.txt 23 **/*.pk 24 **/*.vk 25 **/*.proof 26 **/*.input 27 **/*.r1cs 28 input.json 29 *.log 30 **/*.csv 31 # Files used as backups when refactoring 32 *.backup 33 34 # generated files during integratrion tests 35 integratrion_test/** 36 37 # binary 38 gnark 39 playground 40 examples/benchmark/benchmark 41 examples/**/*.html 42 43 # gnarkd example circuits 44 gnarkd/circuits/** 45 46 .vscode 47 48 # compiled sage -> python code 49 *.sage.py 50 51 # Jetbrains stuff 52 .idea/ 53 54 # go workspace 55 go.work 56 go.work.sum 57 58 examples/gbotrel/**