github.com/LagrangeDev/LagrangeGo@v0.0.0-20240512064304-ad4a85e10cb4/.gitignore (about) 1 ### GoLand template 2 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 3 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 4 5 .idea/ 6 .out/ 7 8 # User-specific stuff 9 .idea/**/workspace.xml 10 .idea/**/tasks.xml 11 .idea/**/usage.statistics.xml 12 .idea/**/dictionaries 13 .idea/**/shelf 14 15 # AWS User-specific 16 .idea/**/aws.xml 17 18 # Generated files 19 .idea/**/contentModel.xml 20 21 # Sensitive or high-churn files 22 .idea/**/dataSources/ 23 .idea/**/dataSources.ids 24 .idea/**/dataSources.local.xml 25 .idea/**/sqlDataSources.xml 26 .idea/**/dynamic.xml 27 .idea/**/uiDesigner.xml 28 .idea/**/dbnavigator.xml 29 30 # Gradle 31 .idea/**/gradle.xml 32 .idea/**/libraries 33 34 # Gradle and Maven with auto-import 35 # When using Gradle or Maven with auto-import, you should exclude module files, 36 # since they will be recreated, and may cause churn. Uncomment if using 37 # auto-import. 38 # .idea/artifacts 39 # .idea/compiler.xml 40 # .idea/jarRepositories.xml 41 # .idea/modules.xml 42 # .idea/*.iml 43 # .idea/modules 44 # *.iml 45 # *.ipr 46 47 # CMake 48 cmake-build-*/ 49 50 # Mongo Explorer plugin 51 .idea/**/mongoSettings.xml 52 53 # File-based project format 54 *.iws 55 56 # IntelliJ 57 out/ 58 59 # mpeltonen/sbt-idea plugin 60 .idea_modules/ 61 62 # JIRA plugin 63 atlassian-ide-plugin.xml 64 65 # Cursive Clojure plugin 66 .idea/replstate.xml 67 68 # SonarLint plugin 69 .idea/sonarlint/ 70 71 # Crashlytics plugin (for Android Studio and IntelliJ) 72 com_crashlytics_export_strings.xml 73 crashlytics.properties 74 crashlytics-build.properties 75 fabric.properties 76 77 # Editor-based Rest Client 78 .idea/httpRequests 79 80 # Android studio 3.1+ serialized cache file 81 .idea/caches/build_file_checksums.ser 82 83 ### Go template 84 # If you prefer the allow list template instead of the deny list, see community template: 85 # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore 86 # 87 # Binaries for programs and plugins 88 *.exe 89 *.exe~ 90 *.dll 91 *.so 92 *.dylib 93 94 # Test binary, built with `go test -c` 95 *.test 96 97 # Output of the go coverage tool, specifically when used with LiteIDE 98 *.out 99 100 # Dependency directories (remove the comment below to include it) 101 # vendor/ 102 103 # Go workspace file 104 go.work 105 106 # Running stub 107 sig.bin 108 qrcode.png 109 testgroup.png 110 testprivate.png