Skip to content

Commit 1a150b2

Browse files
committed
Updated gitignore
1 parent 6b14ead commit 1a150b2

File tree

1 file changed

+82
-0
lines changed

1 file changed

+82
-0
lines changed

.gitignore

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
2+
# Created by https://www.gitignore.io/api/java,gradle,intellij
3+
4+
### Java ###
5+
*.class
6+
7+
# Mobile Tools for Java (J2ME)
8+
.mtj.tmp/
9+
10+
# Package Files #
11+
*.jar
12+
*.war
13+
*.ear
14+
15+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
16+
hs_err_pid*
17+
18+
19+
### Gradle ###
20+
.gradle
21+
gradle.properties
22+
build/
23+
24+
# Ignore Gradle GUI config
25+
gradle-app.setting
26+
27+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
28+
!gradle-wrapper.jar
29+
30+
# Cache of project
31+
.gradletasknamecache
32+
33+
34+
### Intellij ###
35+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
36+
37+
*.iml
38+
39+
## Directory-based project format:
40+
.idea/
41+
# if you remove the above rule, at least ignore the following:
42+
43+
# User-specific stuff:
44+
# .idea/workspace.xml
45+
# .idea/tasks.xml
46+
# .idea/dictionaries
47+
# .idea/shelf
48+
49+
# Sensitive or high-churn files:
50+
# .idea/dataSources.ids
51+
# .idea/dataSources.xml
52+
# .idea/sqlDataSources.xml
53+
# .idea/dynamic.xml
54+
# .idea/uiDesigner.xml
55+
56+
# Gradle:
57+
# .idea/gradle.xml
58+
# .idea/libraries
59+
60+
# Mongo Explorer plugin:
61+
# .idea/mongoSettings.xml
62+
63+
## File-based project format:
64+
*.ipr
65+
*.iws
66+
67+
## Plugin-specific files:
68+
69+
# IntelliJ
70+
/out/
71+
72+
# mpeltonen/sbt-idea plugin
73+
.idea_modules/
74+
75+
# JIRA plugin
76+
atlassian-ide-plugin.xml
77+
78+
# Crashlytics plugin (for Android Studio and IntelliJ)
79+
com_crashlytics_export_strings.xml
80+
crashlytics.properties
81+
crashlytics-build.properties
82+
fabric.properties

0 commit comments

Comments
 (0)