Skip to content

Commit 5996d34

Browse files
committed
Initial Commit
0 parents  commit 5996d34

File tree

1 file changed

+151
-0
lines changed

1 file changed

+151
-0
lines changed

.gitignore

Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/intellij+all,gradle,forgegradle,java
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=intellij+all,gradle,forgegradle,java
4+
5+
### ForgeGradle ###
6+
# Minecraft client/server files
7+
run/
8+
9+
### Intellij+all ###
10+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
11+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
12+
13+
# User-specific stuff
14+
.idea/**/workspace.xml
15+
.idea/**/tasks.xml
16+
.idea/**/usage.statistics.xml
17+
.idea/**/dictionaries
18+
.idea/**/shelf
19+
20+
# AWS User-specific
21+
.idea/**/aws.xml
22+
23+
# Generated files
24+
.idea/**/contentModel.xml
25+
26+
# Sensitive or high-churn files
27+
.idea/**/dataSources/
28+
.idea/**/dataSources.ids
29+
.idea/**/dataSources.local.xml
30+
.idea/**/sqlDataSources.xml
31+
.idea/**/dynamic.xml
32+
.idea/**/uiDesigner.xml
33+
.idea/**/dbnavigator.xml
34+
35+
# Gradle
36+
.idea/**/gradle.xml
37+
.idea/**/libraries
38+
39+
# Gradle and Maven with auto-import
40+
# When using Gradle or Maven with auto-import, you should exclude module files,
41+
# since they will be recreated, and may cause churn. Uncomment if using
42+
# auto-import.
43+
# .idea/artifacts
44+
# .idea/compiler.xml
45+
# .idea/jarRepositories.xml
46+
# .idea/modules.xml
47+
# .idea/*.iml
48+
# .idea/modules
49+
# *.iml
50+
# *.ipr
51+
52+
# CMake
53+
cmake-build-*/
54+
55+
# Mongo Explorer plugin
56+
.idea/**/mongoSettings.xml
57+
58+
# File-based project format
59+
*.iws
60+
61+
# IntelliJ
62+
out/
63+
64+
# mpeltonen/sbt-idea plugin
65+
.idea_modules/
66+
67+
# JIRA plugin
68+
atlassian-ide-plugin.xml
69+
70+
# Cursive Clojure plugin
71+
.idea/replstate.xml
72+
73+
# Crashlytics plugin (for Android Studio and IntelliJ)
74+
com_crashlytics_export_strings.xml
75+
crashlytics.properties
76+
crashlytics-build.properties
77+
fabric.properties
78+
79+
# Editor-based Rest Client
80+
.idea/httpRequests
81+
82+
# Android studio 3.1+ serialized cache file
83+
.idea/caches/build_file_checksums.ser
84+
85+
### Intellij+all Patch ###
86+
# Ignores the whole .idea folder and all .iml files
87+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
88+
89+
.idea/
90+
91+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
92+
93+
*.iml
94+
modules.xml
95+
.idea/misc.xml
96+
*.ipr
97+
98+
# Sonarlint plugin
99+
.idea/sonarlint
100+
101+
### Java ###
102+
# Compiled class file
103+
*.class
104+
105+
# Log file
106+
*.log
107+
108+
# BlueJ files
109+
*.ctxt
110+
111+
# Mobile Tools for Java (J2ME)
112+
.mtj.tmp/
113+
114+
# Package Files #
115+
*.jar
116+
*.war
117+
*.nar
118+
*.ear
119+
*.zip
120+
*.tar.gz
121+
*.rar
122+
123+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
124+
hs_err_pid*
125+
126+
### Gradle ###
127+
.gradle
128+
build/
129+
130+
# Ignore Gradle GUI config
131+
gradle-app.setting
132+
133+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
134+
!gradle-wrapper.jar
135+
136+
# Cache of project
137+
.gradletasknamecache
138+
139+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
140+
# gradle/wrapper/gradle-wrapper.properties
141+
142+
### Gradle Patch ###
143+
**/build/
144+
145+
# Eclipse Gradle plugin generated files
146+
# Eclipse Core
147+
.project
148+
# JDT-specific (Eclipse Java Development Tools)
149+
.classpath
150+
151+
# End of https://www.toptal.com/developers/gitignore/api/intellij+all,gradle,forgegradle,java

0 commit comments

Comments
 (0)