A dungeon delver roguelike using Pathfinder 2nd edition rules
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Adding go/godot gitignore

+44
+44
.gitignore
··· 1 + # Created by https://www.toptal.com/developers/gitignore/api/go,godot 2 + # Edit at https://www.toptal.com/developers/gitignore?templates=go,godot 3 + 4 + ### Go ### 5 + # If you prefer the allow list template instead of the deny list, see community template: 6 + # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore 7 + # 8 + # Binaries for programs and plugins 9 + *.exe 10 + *.exe~ 11 + *.dll 12 + *.so 13 + *.dylib 14 + 15 + # Test binary, built with `go test -c` 16 + *.test 17 + 18 + # Output of the go coverage tool, specifically when used with LiteIDE 19 + *.out 20 + 21 + # Dependency directories (remove the comment below to include it) 22 + # vendor/ 23 + 24 + # Go workspace file 25 + go.work 26 + 27 + ### Godot ### 28 + # Godot 4+ specific ignores 29 + .godot/ 30 + 31 + # Godot-specific ignores 32 + .import/ 33 + export.cfg 34 + export_presets.cfg 35 + 36 + # Imported translations (automatically generated from CSV files) 37 + *.translation 38 + 39 + # Mono-specific ignores 40 + .mono/ 41 + data_*/ 42 + mono_crash.*.json 43 + 44 + # End of https://www.toptal.com/developers/gitignore/api/go,godot