Skip to content

Commit b43ad3a

Browse files
committed
.gitignore file added.
1 parent c8e3cd7 commit b43ad3a

File tree

1 file changed

+153
-0
lines changed

1 file changed

+153
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)