Skip to content

Commit 40a2421

Browse files
committed
Initial commit.
0 parents  commit 40a2421

8 files changed

Lines changed: 448 additions & 0 deletions

File tree

.gitignore

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.exe~
4+
*.dll
5+
*.so
6+
*.dylib
7+
8+
# Test binary, built with `go test -c`
9+
*.test
10+
11+
# Output of the go coverage tool, specifically when used with LiteIDE
12+
*.out
13+
14+
# Dependency directories (remove the comment below to include it)
15+
# vendor/
16+
17+
# KDiff3 files
18+
**/*.orig
19+
20+
# Log files
21+
*.log
22+
23+
# Created by https://www.toptal.com/developers/gitignore/api/jetbrains
24+
# Edit at https://www.toptal.com/developers/gitignore?templates=jetbrains
25+
26+
### JetBrains ###
27+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
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/artifacts
58+
# .idea/compiler.xml
59+
# .idea/jarRepositories.xml
60+
# .idea/modules.xml
61+
# .idea/*.iml
62+
# .idea/modules
63+
# *.iml
64+
# *.ipr
65+
66+
# CMake
67+
cmake-build-*/
68+
69+
# Mongo Explorer plugin
70+
.idea/**/mongoSettings.xml
71+
72+
# File-based project format
73+
*.iws
74+
75+
# IntelliJ
76+
out/
77+
78+
# mpeltonen/sbt-idea plugin
79+
.idea_modules/
80+
81+
# JIRA plugin
82+
atlassian-ide-plugin.xml
83+
84+
# Cursive Clojure plugin
85+
.idea/replstate.xml
86+
87+
# Crashlytics plugin (for Android Studio and IntelliJ)
88+
com_crashlytics_export_strings.xml
89+
crashlytics.properties
90+
crashlytics-build.properties
91+
fabric.properties
92+
93+
# Editor-based Rest Client
94+
.idea/httpRequests
95+
96+
# Android studio 3.1+ serialized cache file
97+
.idea/caches/build_file_checksums.ser
98+
99+
### JetBrains Patch ###
100+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
101+
102+
# *.iml
103+
# modules.xml
104+
# .idea/misc.xml
105+
# *.ipr
106+
107+
# Sonarlint plugin
108+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
109+
.idea/**/sonarlint/
110+
111+
# SonarQube Plugin
112+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
113+
.idea/**/sonarIssues.xml
114+
115+
# Markdown Navigator plugin
116+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
117+
.idea/**/markdown-navigator.xml
118+
.idea/**/markdown-navigator-enh.xml
119+
.idea/**/markdown-navigator/
120+
121+
# Cache file creation bug
122+
# See https://youtrack.jetbrains.com/issue/JBR-2257
123+
.idea/$CACHE_FILE$
124+
125+
# CodeStream plugin
126+
# https://plugins.jetbrains.com/plugin/12206-codestream
127+
.idea/codestream.xml
128+
129+
# End of https://www.toptal.com/developers/gitignore/api/jetbrai

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/ci.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)