Skip to content

Commit cd65d72

Browse files
Added gitignore
1 parent c7f6b83 commit cd65d72

1 file changed

Lines changed: 107 additions & 0 deletions

File tree

.gitignore

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

0 commit comments

Comments
 (0)