Skip to content

Commit a726944

Browse files
committed
.gitignore file added.
1 parent c37945e commit a726944

1 file changed

Lines changed: 167 additions & 0 deletions

File tree

.gitignore

Lines changed: 167 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
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+
.gradle
53+
build/
54+
55+
# Ignore Gradle GUI config
56+
gradle-app.setting
57+
58+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
59+
!gradle-wrapper.jar
60+
61+
# Cache of project
62+
.gradletasknamecache
63+
64+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
65+
# gradle/wrapper/gradle-wrapper.properties
66+
67+
### Gradle Patch ###
68+
**/build/
69+
70+
# End of https://www.gitignore.io/api/gradle
71+
72+
# Ignore Gradle GUI config
73+
gradle-app.setting
74+
75+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
76+
!gradle-wrapper.jar
77+
78+
# Cache of project
79+
.gradletasknamecache
80+
81+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
82+
# gradle/wrapper/gradle-wrapper.properties
83+
84+
# Created by https://www.gitignore.io/api/intellij
85+
# Edit at https://www.gitignore.io/?templates=intellij
86+
87+
### Intellij ###
88+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
89+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
90+
91+
# User-specific stuff
92+
.idea/**/workspace.xml
93+
.idea/**/tasks.xml
94+
.idea/**/usage.statistics.xml
95+
.idea/**/dictionaries
96+
.idea/**/shelf
97+
98+
# Generated files
99+
.idea/**/contentModel.xml
100+
101+
# Sensitive or high-churn files
102+
.idea/**/dataSources/
103+
.idea/**/dataSources.ids
104+
.idea/**/dataSources.local.xml
105+
.idea/**/sqlDataSources.xml
106+
.idea/**/dynamic.xml
107+
.idea/**/uiDesigner.xml
108+
.idea/**/dbnavigator.xml
109+
110+
# Gradle
111+
.idea/**/gradle.xml
112+
.idea/**/libraries
113+
114+
# Gradle and Maven with auto-import
115+
# When using Gradle or Maven with auto-import, you should exclude module files,
116+
# since they will be recreated, and may cause churn. Uncomment if using
117+
# auto-import.
118+
# .idea/modules.xml
119+
# .idea/*.iml
120+
# .idea/modules
121+
122+
# CMake
123+
cmake-build-*/
124+
125+
# Mongo Explorer plugin
126+
.idea/**/mongoSettings.xml
127+
128+
# File-based project format
129+
*.iws
130+
131+
# IntelliJ
132+
out/
133+
run/
134+
run-client/
135+
run-server/
136+
137+
# mpeltonen/sbt-idea plugin
138+
.idea_modules/
139+
140+
# JIRA plugin
141+
atlassian-ide-plugin.xml
142+
143+
# Cursive Clojure plugin
144+
.idea/replstate.xml
145+
146+
# Crashlytics plugin (for Android Studio and IntelliJ)
147+
com_crashlytics_export_strings.xml
148+
crashlytics.properties
149+
crashlytics-build.properties
150+
fabric.properties
151+
152+
# Editor-based Rest Client
153+
.idea/httpRequests
154+
155+
# Android studio 3.1+ serialized cache file
156+
.idea/caches/build_file_checksums.ser
157+
158+
### Intellij Patch ###
159+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
160+
161+
# *.iml
162+
# modules.xml
163+
# .idea/misc.xml
164+
# *.ipr
165+
166+
# Sonarlint plugin
167+
.idea/sonarlint

0 commit comments

Comments
 (0)