1+ # From https://github.com/github/gitignore/blob/master/Gradle.gitignore
2+ .gradle
3+ /build /
4+
5+ # Ignore Gradle GUI config
6+ gradle-app.setting
7+
8+
9+
10+ # Cache of project
11+ .gradletasknamecache
12+
13+ # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
14+ # gradle/wrapper/gradle-wrapper.properties
15+
16+
17+
18+ # From https://github.com/github/gitignore/blob/master/Java.gitignore
19+ * .class
20+
21+ # Mobile Tools for Java (J2ME)
22+ .mtj.tmp /
23+
24+ # Package Files #
25+ * .jar
26+ * .war
27+ * .ear
28+
29+ # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
30+ ! gradle-wrapper.jar
31+
32+ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
33+ hs_err_pid *
34+
35+
36+ # From https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
37+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
38+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
39+
40+ # User-specific stuff:
41+ .idea /workspace.xml
42+ .idea /tasks.xml
43+ .idea /dictionaries
44+ .idea /vcs.xml
45+ .idea /jsLibraryMappings.xml
46+
47+ # Sensitive or high-churn files:
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+ # Mongo Explorer plugin:
60+ .idea /mongoSettings.xml
61+
62+ # # File-based project format:
63+ * .iws
64+
65+ # # Plugin-specific files:
66+
67+ # IntelliJ
68+ /out /
69+
70+ # mpeltonen/sbt-idea plugin
71+ .idea_modules /
72+
73+ # JIRA plugin
74+ atlassian-ide-plugin.xml
75+
76+ # Crashlytics plugin (for Android Studio and IntelliJ)
77+ com_crashlytics_export_strings.xml
78+ crashlytics.properties
79+ crashlytics-build.properties
80+ fabric.properties
81+
82+
83+ * .DS_Store
84+ .AppleDouble
85+ .LSOverride
86+
87+ # Icon must end with two \r
88+ Icon
89+
90+
91+ # Thumbnails
92+ ._ *
93+
94+ # Files that might appear in the root of a volume
95+ .DocumentRevisions-V100
96+ .fseventsd
97+ .Spotlight-V100
98+ .TemporaryItems
99+ .Trashes
100+ .VolumeIcon.icns
101+ .com.apple.timemachine.donotpresent
102+
103+ # Directories potentially created on remote AFP share
104+ .AppleDB
105+ .AppleDesktop
106+ Network Trash Folder
107+ Temporary Items
108+ .apdisk
109+
110+ .vscode /
0 commit comments