|
| 1 | +/.idea/ |
| 2 | + |
| 3 | +# Created by https://www.gitignore.io/api/go,intellij,visualstudiocode,vim,macos |
| 4 | +# Edit at https://www.gitignore.io/?templates=go,intellij,visualstudiocode,vim,macos |
| 5 | + |
| 6 | +### Go ### |
| 7 | +# Binaries for programs and plugins |
| 8 | +*.exe |
| 9 | +*.exe~ |
| 10 | +*.dll |
| 11 | +*.so |
| 12 | +*.dylib |
| 13 | + |
| 14 | +# Test binary, built with `go test -c` |
| 15 | +*.test |
| 16 | + |
| 17 | +# Output of the go coverage tool, specifically when used with LiteIDE |
| 18 | +*.out |
| 19 | + |
| 20 | +# Dependency directories (remove the comment below to include it) |
| 21 | +# vendor/ |
| 22 | + |
| 23 | +### Go Patch ### |
| 24 | +/vendor/ |
| 25 | +/Godeps/ |
| 26 | + |
| 27 | +### Intellij ### |
| 28 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm |
| 29 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 30 | + |
| 31 | +# User-specific stuff |
| 32 | +.idea/**/workspace.xml |
| 33 | +.idea/**/tasks.xml |
| 34 | +.idea/**/usage.statistics.xml |
| 35 | +.idea/**/dictionaries |
| 36 | +.idea/**/shelf |
| 37 | + |
| 38 | +# Generated files |
| 39 | +.idea/**/contentModel.xml |
| 40 | + |
| 41 | +# Sensitive or high-churn files |
| 42 | +.idea/**/dataSources/ |
| 43 | +.idea/**/dataSources.ids |
| 44 | +.idea/**/dataSources.local.xml |
| 45 | +.idea/**/sqlDataSources.xml |
| 46 | +.idea/**/dynamic.xml |
| 47 | +.idea/**/uiDesigner.xml |
| 48 | +.idea/**/dbnavigator.xml |
| 49 | + |
| 50 | +# Gradle |
| 51 | +.idea/**/gradle.xml |
| 52 | +.idea/**/libraries |
| 53 | + |
| 54 | +# Gradle and Maven with auto-import |
| 55 | +# When using Gradle or Maven with auto-import, you should exclude module files, |
| 56 | +# since they will be recreated, and may cause churn. Uncomment if using |
| 57 | +# auto-import. |
| 58 | +# .idea/modules.xml |
| 59 | +# .idea/*.iml |
| 60 | +# .idea/modules |
| 61 | +# *.iml |
| 62 | +# *.ipr |
| 63 | + |
| 64 | +# CMake |
| 65 | +cmake-build-*/ |
| 66 | + |
| 67 | +# Mongo Explorer plugin |
| 68 | +.idea/**/mongoSettings.xml |
| 69 | + |
| 70 | +# File-based project format |
| 71 | +*.iws |
| 72 | + |
| 73 | +# IntelliJ |
| 74 | +out/ |
| 75 | + |
| 76 | +# mpeltonen/sbt-idea plugin |
| 77 | +.idea_modules/ |
| 78 | + |
| 79 | +# JIRA plugin |
| 80 | +atlassian-ide-plugin.xml |
| 81 | + |
| 82 | +# Cursive Clojure plugin |
| 83 | +.idea/replstate.xml |
| 84 | + |
| 85 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 86 | +com_crashlytics_export_strings.xml |
| 87 | +crashlytics.properties |
| 88 | +crashlytics-build.properties |
| 89 | +fabric.properties |
| 90 | + |
| 91 | +# Editor-based Rest Client |
| 92 | +.idea/httpRequests |
| 93 | + |
| 94 | +# Android studio 3.1+ serialized cache file |
| 95 | +.idea/caches/build_file_checksums.ser |
| 96 | + |
| 97 | +### Intellij Patch ### |
| 98 | +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 |
| 99 | + |
| 100 | +# *.iml |
| 101 | +# modules.xml |
| 102 | +# .idea/misc.xml |
| 103 | +# *.ipr |
| 104 | + |
| 105 | +# Sonarlint plugin |
| 106 | +.idea/**/sonarlint/ |
| 107 | + |
| 108 | +# SonarQube Plugin |
| 109 | +.idea/**/sonarIssues.xml |
| 110 | + |
| 111 | +# Markdown Navigator plugin |
| 112 | +.idea/**/markdown-navigator.xml |
| 113 | +.idea/**/markdown-navigator/ |
| 114 | + |
| 115 | +### macOS ### |
| 116 | +# General |
| 117 | +.DS_Store |
| 118 | +.AppleDouble |
| 119 | +.LSOverride |
| 120 | + |
| 121 | +# Icon must end with two \r |
| 122 | +Icon |
| 123 | + |
| 124 | +# Thumbnails |
| 125 | +._* |
| 126 | + |
| 127 | +# Files that might appear in the root of a volume |
| 128 | +.DocumentRevisions-V100 |
| 129 | +.fseventsd |
| 130 | +.Spotlight-V100 |
| 131 | +.TemporaryItems |
| 132 | +.Trashes |
| 133 | +.VolumeIcon.icns |
| 134 | +.com.apple.timemachine.donotpresent |
| 135 | + |
| 136 | +# Directories potentially created on remote AFP share |
| 137 | +.AppleDB |
| 138 | +.AppleDesktop |
| 139 | +Network Trash Folder |
| 140 | +Temporary Items |
| 141 | +.apdisk |
| 142 | + |
| 143 | +### Vim ### |
| 144 | +# Swap |
| 145 | +[._]*.s[a-v][a-z] |
| 146 | +[._]*.sw[a-p] |
| 147 | +[._]s[a-rt-v][a-z] |
| 148 | +[._]ss[a-gi-z] |
| 149 | +[._]sw[a-p] |
| 150 | + |
| 151 | +# Session |
| 152 | +Session.vim |
| 153 | +Sessionx.vim |
| 154 | + |
| 155 | +# Temporary |
| 156 | +.netrwhist |
| 157 | +*~ |
| 158 | +# Auto-generated tag files |
| 159 | +tags |
| 160 | +# Persistent undo |
| 161 | +[._]*.un~ |
| 162 | + |
| 163 | +### VisualStudioCode ### |
| 164 | +.vscode/* |
| 165 | +!.vscode/settings.json |
| 166 | +!.vscode/tasks.json |
| 167 | +!.vscode/launch.json |
| 168 | +!.vscode/extensions.json |
| 169 | + |
| 170 | +### VisualStudioCode Patch ### |
| 171 | +# Ignore all local history of files |
| 172 | +.history |
| 173 | + |
| 174 | +# End of https://www.gitignore.io/api/go,intellij,visualstudiocode,vim,macos |
0 commit comments