Skip to content
This repository was archived by the owner on Nov 30, 2021. It is now read-only.

Commit c00106b

Browse files
committed
Improve .gitignore
1 parent 9772cfb commit c00106b

22 files changed

+1625
-2
lines changed

.gitignore

+89-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,93 @@
1-
.idea
2-
**.iml
1+
# Created by https://www.gitignore.io/api/gradle,java,jetbrains
2+
3+
### Java ###
4+
*.class
5+
6+
# BlueJ files
7+
*.ctxt
8+
9+
# Mobile Tools for Java (J2ME)
10+
.mtj.tmp/
11+
12+
# Package Files #
13+
*.jar
14+
*.war
15+
*.ear
16+
17+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
18+
hs_err_pid*
19+
20+
### JetBrains ###
21+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
22+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
23+
24+
# User-specific stuff:
25+
.idea/workspace.xml
26+
.idea/tasks.xml
27+
28+
# Sensitive or high-churn files:
29+
.idea/dataSources/
30+
.idea/dataSources.ids
31+
.idea/dataSources.xml
32+
.idea/dataSources.local.xml
33+
.idea/sqlDataSources.xml
34+
.idea/dynamic.xml
35+
.idea/uiDesigner.xml
36+
37+
# Gradle:
38+
.idea/gradle.xml
39+
.idea/libraries
40+
41+
# Mongo Explorer plugin:
42+
.idea/mongoSettings.xml
43+
44+
## File-based project format:
45+
*.iws
46+
47+
## Plugin-specific files:
48+
49+
# IntelliJ
50+
/out/
51+
52+
# mpeltonen/sbt-idea plugin
53+
.idea_modules/
54+
55+
# JIRA plugin
56+
atlassian-ide-plugin.xml
57+
58+
# Crashlytics plugin (for Android Studio and IntelliJ)
59+
com_crashlytics_export_strings.xml
60+
crashlytics.properties
61+
crashlytics-build.properties
62+
fabric.properties
63+
64+
### JetBrains Patch ###
65+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
66+
67+
# *.iml
68+
# modules.xml
69+
# .idea/misc.xml
70+
# *.ipr
71+
72+
### Gradle ###
373
.gradle
74+
75+
# Ignore Gradle GUI config
76+
gradle-app.setting
77+
78+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
79+
!gradle-wrapper.jar
80+
81+
# Cache of project
82+
.gradletasknamecache
83+
84+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
85+
# gradle/wrapper/gradle-wrapper.properties
86+
87+
# End of https://www.gitignore.io/api/gradle,java,jetbrains
88+
89+
# Others
490
*/build
91+
build/reports
592
teamcity
693
downloads

.idea/compiler.xml

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jsLibraryMappings.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/amazon-util/amazon-util.iml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)