| 1 | # If you prefer the allow list template instead of the deny list, see community template: |
| 2 | # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore |
| 3 | # |
| 4 | # Binaries for programs and plugins |
| 5 | *.log |
| 6 | *.exe |
| 7 | *.exe~ |
| 8 | *.dll |
| 9 | *.so |
| 10 | *.dylib |
| 11 | bin/ |
| 12 | chat |
| 13 | |
| 14 | data/ |
| 15 | |
| 16 | # Test binary, built with `go test -c` |
| 17 | *.test |
| 18 | *.wasm |
| 19 | |
| 20 | # Code coverage profiles and other test artifacts |
| 21 | *.out |
| 22 | coverage.* |
| 23 | *.coverprofile |
| 24 | profile.cov |
| 25 | |
| 26 | # Dependency directories (remove the comment below to include it) |
| 27 | # vendor/ |
| 28 | |
| 29 | # env file |
| 30 | .env |
| 31 | |
| 32 | # oh-my-claudecode state |
| 33 | .omc/ |
| 34 | |
| 35 | # Editor/IDE |
| 36 | # .idea/ |
| 37 | # .vscode/ |
| 38 | |
| 39 | # macOS |
| 40 | .DS_Store |
| 41 | |
| 42 | /target |
| 43 | |
| 44 | # Docker Compose Override |
| 45 | /docker-compose.override.yml |
| 46 | /docker-compose.override.yaml |
| 47 | |
| 48 | # Added by goreleaser init: |
| 49 | dist/ |
| 50 | |
| 51 | # Created by https://www.toptal.com/developers/gitignore/api/goland+all |
| 52 | # Edit at https://www.toptal.com/developers/gitignore?templates=goland+all |
| 53 | |
| 54 | ### GoLand+all ### |
| 55 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider |
| 56 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 57 | |
| 58 | # User-specific stuff |
| 59 | .idea/**/workspace.xml |
| 60 | .idea/**/tasks.xml |
| 61 | .idea/**/usage.statistics.xml |
| 62 | .idea/**/dictionaries |
| 63 | .idea/**/shelf |
| 64 | |
| 65 | # AWS User-specific |
| 66 | .idea/**/aws.xml |
| 67 | |
| 68 | # Generated files |
| 69 | .idea/**/contentModel.xml |
| 70 | |
| 71 | # Sensitive or high-churn files |
| 72 | .idea/**/dataSources/ |
| 73 | .idea/**/dataSources.ids |
| 74 | .idea/**/dataSources.local.xml |
| 75 | .idea/**/sqlDataSources.xml |
| 76 | .idea/**/dynamic.xml |
| 77 | .idea/**/uiDesigner.xml |
| 78 | .idea/**/dbnavigator.xml |
| 79 | |
| 80 | # Gradle |
| 81 | .idea/**/gradle.xml |
| 82 | .idea/**/libraries |
| 83 | |
| 84 | # Gradle and Maven with auto-import |
| 85 | # When using Gradle or Maven with auto-import, you should exclude module files, |
| 86 | # since they will be recreated, and may cause churn. Uncomment if using |
| 87 | # auto-import. |
| 88 | # .idea/artifacts |
| 89 | # .idea/compiler.xml |
| 90 | # .idea/jarRepositories.xml |
| 91 | # .idea/modules.xml |
| 92 | # .idea/*.iml |
| 93 | # .idea/modules |
| 94 | # *.iml |
| 95 | # *.ipr |
| 96 | |
| 97 | # CMake |
| 98 | cmake-build-*/ |
| 99 | |
| 100 | # Mongo Explorer plugin |
| 101 | .idea/**/mongoSettings.xml |
| 102 | |
| 103 | # File-based project format |
| 104 | *.iws |
| 105 | |
| 106 | # IntelliJ |
| 107 | out/ |
| 108 | |
| 109 | # mpeltonen/sbt-idea plugin |
| 110 | .idea_modules/ |
| 111 | |
| 112 | # JIRA plugin |
| 113 | atlassian-ide-plugin.xml |
| 114 | |
| 115 | # Cursive Clojure plugin |
| 116 | .idea/replstate.xml |
| 117 | |
| 118 | # SonarLint plugin |
| 119 | .idea/sonarlint/ |
| 120 | |
| 121 | # Crashlytics plugin (for Android Studio and IntelliJ) |
| 122 | com_crashlytics_export_strings.xml |
| 123 | crashlytics.properties |
| 124 | crashlytics-build.properties |
| 125 | fabric.properties |
| 126 | |
| 127 | # Editor-based Rest Client |
| 128 | .idea/httpRequests |
| 129 | |
| 130 | # Android studio 3.1+ serialized cache file |
| 131 | .idea/caches/build_file_checksums.ser |
| 132 | |
| 133 | ### GoLand+all Patch ### |
| 134 | # Ignore everything but code style settings and run configurations |
| 135 | # that are supposed to be shared within teams. |
| 136 | |
| 137 | .idea/* |
| 138 | |
| 139 | !.idea/codeStyles |
| 140 | !.idea/runConfigurations |
| 141 | |
| 142 | # End of https://www.toptal.com/developers/gitignore/api/goland+all |
| 143 | .gstack/ |
| 144 | |
| 145 | # Nested workspace (separate keyless_tls project; not part of the portal module) |
| 146 | keyless_tls/ |
| 147 | |
| 148 | # Local relay/tunnel state |
| 149 | .portal-certs/ |
| 150 | *identity.json |