...
1
2# Created by https://www.gitignore.io/api/go,intellij+all,visualstudiocode
3# Edit at https://www.gitignore.io/?templates=go,intellij+all,visualstudiocode
4
5### Go ###
6# Binaries for programs and plugins
7*.exe
8*.exe~
9*.dll
10*.so
11*.dylib
12
13# Test binary, built with `go test -c`
14*.test
15
16# Output of the go coverage tool, specifically when used with LiteIDE
17*.out
18
19# Dependency directories (remove the comment below to include it)
20# vendor/
21
22### Go Patch ###
23/vendor/
24/Godeps/
25
26### Intellij+all ###
27# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
28# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
29
30# User-specific stuff
31.idea/**/workspace.xml
32.idea/**/tasks.xml
33.idea/**/usage.statistics.xml
34.idea/**/dictionaries
35.idea/**/shelf
36
37# Generated files
38.idea/**/contentModel.xml
39
40# Sensitive or high-churn files
41.idea/**/dataSources/
42.idea/**/dataSources.ids
43.idea/**/dataSources.local.xml
44.idea/**/sqlDataSources.xml
45.idea/**/dynamic.xml
46.idea/**/uiDesigner.xml
47.idea/**/dbnavigator.xml
48
49# Gradle
50.idea/**/gradle.xml
51.idea/**/libraries
52
53# Gradle and Maven with auto-import
54# When using Gradle or Maven with auto-import, you should exclude module files,
55# since they will be recreated, and may cause churn. Uncomment if using
56# auto-import.
57# .idea/modules.xml
58# .idea/*.iml
59# .idea/modules
60# *.iml
61# *.ipr
62
63# CMake
64cmake-build-*/
65
66# Mongo Explorer plugin
67.idea/**/mongoSettings.xml
68
69# File-based project format
70*.iws
71
72# IntelliJ
73out/
74
75# mpeltonen/sbt-idea plugin
76.idea_modules/
77
78# JIRA plugin
79atlassian-ide-plugin.xml
80
81# Cursive Clojure plugin
82.idea/replstate.xml
83
84# Crashlytics plugin (for Android Studio and IntelliJ)
85com_crashlytics_export_strings.xml
86crashlytics.properties
87crashlytics-build.properties
88fabric.properties
89
90# Editor-based Rest Client
91.idea/httpRequests
92
93# Android studio 3.1+ serialized cache file
94.idea/caches/build_file_checksums.ser
95
96### Intellij+all Patch ###
97# Ignores the whole .idea folder and all .iml files
98# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
99
100.idea/
101
102# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
103
104*.iml
105modules.xml
106.idea/misc.xml
107*.ipr
108
109# Sonarlint plugin
110.idea/sonarlint
111
112### VisualStudioCode ###
113.vscode/*
114!.vscode/settings.json
115!.vscode/tasks.json
116!.vscode/launch.json
117!.vscode/extensions.json
118
119### VisualStudioCode Patch ###
120# Ignore all local history of files
121.history
122
123# End of https://www.gitignore.io/api/go,intellij+all,visualstudiocode
124
125main
View as plain text