Skip to content
This repository was archived by the owner on Jun 11, 2023. It is now read-only.

Commit c205b6f

Browse files
committed
<master> Improve gitignore
1 parent 02d72d9 commit c205b6f

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed

.gitignore

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,64 @@
2020

2121
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2222
hs_err_pid*
23+
24+
# Gradle
25+
.gradle
26+
/build/
27+
28+
# Ignore Gradle GUI config
29+
gradle-app.setting
30+
31+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
32+
!gradle-wrapper.jar
33+
34+
# Cache of project
35+
.gradletasknamecache
36+
37+
# Intellij
38+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
39+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
40+
41+
# User-specific stuff:
42+
.idea/**/workspace.xml
43+
.idea/**/tasks.xml
44+
.idea/dictionaries
45+
46+
# Sensitive or high-churn files:
47+
.idea/**/dataSources/
48+
.idea/**/dataSources.ids
49+
.idea/**/dataSources.xml
50+
.idea/**/dataSources.local.xml
51+
.idea/**/sqlDataSources.xml
52+
.idea/**/dynamic.xml
53+
.idea/**/uiDesigner.xml
54+
55+
# Gradle:
56+
.idea/**/gradle.xml
57+
.idea/**/libraries
58+
59+
# CMake
60+
cmake-build-debug/
61+
62+
# Mongo Explorer plugin:
63+
.idea/**/mongoSettings.xml
64+
65+
## File-based project format:
66+
*.iws
67+
68+
## Plugin-specific files:
69+
70+
# IntelliJ
71+
out/
72+
73+
# mpeltonen/sbt-idea plugin
74+
.idea_modules/
75+
76+
# Cursive Clojure plugin
77+
.idea/replstate.xml
78+
79+
# Crashlytics plugin (for Android Studio and IntelliJ)
80+
com_crashlytics_export_strings.xml
81+
crashlytics.properties
82+
crashlytics-build.properties
83+
fabric.properties

0 commit comments

Comments
 (0)