Skip to content

Commit 0705231

Browse files
committed
Adding gitignore
1 parent 96a8d6c commit 0705231

File tree

1 file changed

+70
-0
lines changed

1 file changed

+70
-0
lines changed

.gitignore

+70
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,73 @@ crashlytics.properties
6464
crashlytics-build.properties
6565

6666

67+
### Gradle template
68+
.gradle
69+
build/
70+
71+
# Ignore Gradle GUI config
72+
gradle-app.setting
73+
74+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
75+
!gradle-wrapper.jar
76+
### JetBrains template
77+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
78+
79+
*.iml
80+
81+
## Directory-based project format:
82+
.idea/
83+
# if you remove the above rule, at least ignore the following:
84+
85+
# User-specific stuff:
86+
# .idea/workspace.xml
87+
# .idea/tasks.xml
88+
# .idea/dictionaries
89+
90+
# Sensitive or high-churn files:
91+
# .idea/dataSources.ids
92+
# .idea/dataSources.xml
93+
# .idea/sqlDataSources.xml
94+
# .idea/dynamic.xml
95+
# .idea/uiDesigner.xml
96+
97+
# Gradle:
98+
# .idea/gradle.xml
99+
# .idea/libraries
100+
101+
# Mongo Explorer plugin:
102+
# .idea/mongoSettings.xml
103+
104+
## File-based project format:
105+
*.ipr
106+
*.iws
107+
108+
## Plugin-specific files:
109+
110+
# IntelliJ
111+
/out/
112+
113+
# mpeltonen/sbt-idea plugin
114+
.idea_modules/
115+
116+
# JIRA plugin
117+
atlassian-ide-plugin.xml
118+
119+
# Crashlytics plugin (for Android Studio and IntelliJ)
120+
com_crashlytics_export_strings.xml
121+
crashlytics.properties
122+
crashlytics-build.properties
123+
### Java template
124+
*.class
125+
126+
# Mobile Tools for Java (J2ME)
127+
.mtj.tmp/
128+
129+
# Package Files #
130+
*.jar
131+
*.war
132+
*.ear
133+
134+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
135+
hs_err_pid*
136+

0 commit comments

Comments
 (0)