github.com/wfusion/gofusion@v1.1.14/.gitignore (about) 1 # OS 2 .DS_Store 3 Desktop.ini 4 Thumbs.db 5 6 # Binaries for programs and plugins 7 *.exe 8 *.exe~ 9 *.dll 10 *.iml 11 *.so 12 *.dylib 13 14 # Test binary, built with `go test -c` 15 *.test 16 17 # tar file. 18 *.tar.gz 19 20 # Prevent accidental node_modules installed at root. 21 node_modules/ 22 package.json 23 yarn.lock 24 package-json.lock 25 26 # Log output 27 *.out 28 *.log 29 30 # Output of the go coverage tool, specifically when used with LiteIDE 31 coverage.xml 32 coverage.json 33 coverage.out 34 junit.xml 35 allure* 36 37 # binaries 38 cmd/asynqmon/asynqmon 39 dist/ 40 bin/ 41 output/ 42 43 # Editor configs 44 .idea/ 45 .vscode/ 46 .editorconfig 47 venv/ 48 49 50 # Go workspace 51 go.work* 52 *local.yml 53 .mod-cache 54 /vendor 55 56 # Docs 57 docs/themes/ 58 docs/public/ 59 docs/content/src-link 60 gen/ 61 62 # Examples 63 examples/ 64 example/