Skip to content

Commit 3407b49

Browse files
committed
Update .gitignore to less restrictive parameters
Use gitignore.io for auto-generation.
1 parent 9e116e2 commit 3407b49

File tree

1 file changed

+144
-25
lines changed

1 file changed

+144
-25
lines changed

.gitignore

+144-25
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,144 @@
1-
/*
2-
3-
!/common
4-
!/test
5-
!/dummy
6-
!/gradle
7-
!/resources
8-
!/resources_raw
9-
!/style
10-
11-
!/.gitignore
12-
!/.travis.yml
13-
!/LICENSE.md
14-
!/LogisticsPipes_dummy.jar
15-
!/README.md
16-
!/BUILDING.md
17-
!/build.gradle
18-
!/buildmessages.pylist
19-
!/download-api.xml
20-
!/expect.tcl
21-
!/gradlew
22-
!/gradlew.bat
23-
!/build-ant.xml
24-
!/build-bc61.gradle
25-
!lombok.config
1+
# IDEA project output path
2+
/classes
3+
4+
# Created by https://www.gitignore.io/api/java,gradle,kotlin,forgegradle,intellij+iml
5+
# Edit at https://www.gitignore.io/?templates=java,gradle,kotlin,forgegradle,intellij+iml
6+
7+
### ForgeGradle ###
8+
# Minecraft client/server files
9+
run/
10+
11+
### Intellij+iml ###
12+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
13+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
14+
15+
# User-specific stuff
16+
.idea/**/workspace.xml
17+
.idea/**/tasks.xml
18+
.idea/**/usage.statistics.xml
19+
.idea/**/dictionaries
20+
.idea/**/shelf
21+
22+
# Generated files
23+
.idea/**/contentModel.xml
24+
25+
# Sensitive or high-churn files
26+
.idea/**/dataSources/
27+
.idea/**/dataSources.ids
28+
.idea/**/dataSources.local.xml
29+
.idea/**/sqlDataSources.xml
30+
.idea/**/dynamic.xml
31+
.idea/**/uiDesigner.xml
32+
.idea/**/dbnavigator.xml
33+
34+
# Gradle
35+
.idea/**/gradle.xml
36+
.idea/**/libraries
37+
38+
# Gradle and Maven with auto-import
39+
# When using Gradle or Maven with auto-import, you should exclude module files,
40+
# since they will be recreated, and may cause churn. Uncomment if using
41+
# auto-import.
42+
# .idea/modules.xml
43+
# .idea/*.iml
44+
# .idea/modules
45+
46+
# CMake
47+
cmake-build-*/
48+
49+
# Mongo Explorer plugin
50+
.idea/**/mongoSettings.xml
51+
52+
# File-based project format
53+
*.iws
54+
55+
# IntelliJ
56+
out/
57+
58+
# mpeltonen/sbt-idea plugin
59+
.idea_modules/
60+
61+
# JIRA plugin
62+
atlassian-ide-plugin.xml
63+
64+
# Cursive Clojure plugin
65+
.idea/replstate.xml
66+
67+
# Crashlytics plugin (for Android Studio and IntelliJ)
68+
com_crashlytics_export_strings.xml
69+
crashlytics.properties
70+
crashlytics-build.properties
71+
fabric.properties
72+
73+
# Editor-based Rest Client
74+
.idea/httpRequests
75+
76+
# Android studio 3.1+ serialized cache file
77+
.idea/caches/build_file_checksums.ser
78+
79+
### Intellij+iml Patch ###
80+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
81+
82+
*.iml
83+
modules.xml
84+
.idea/misc.xml
85+
*.ipr
86+
87+
### Java ###
88+
# Compiled class file
89+
*.class
90+
91+
# Log file
92+
*.log
93+
94+
# BlueJ files
95+
*.ctxt
96+
97+
# Mobile Tools for Java (J2ME)
98+
.mtj.tmp/
99+
100+
# Package Files #
101+
*.jar
102+
*.war
103+
*.nar
104+
*.ear
105+
*.zip
106+
*.tar.gz
107+
*.rar
108+
109+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
110+
hs_err_pid*
111+
112+
### Kotlin ###
113+
# Compiled class file
114+
115+
# Log file
116+
117+
# BlueJ files
118+
119+
# Mobile Tools for Java (J2ME)
120+
121+
# Package Files #
122+
123+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
124+
125+
### Gradle ###
126+
.gradle
127+
/build/
128+
129+
# Ignore Gradle GUI config
130+
gradle-app.setting
131+
132+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
133+
!gradle-wrapper.jar
134+
135+
# Cache of project
136+
.gradletasknamecache
137+
138+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
139+
# gradle/wrapper/gradle-wrapper.properties
140+
141+
### Gradle Patch ###
142+
**/build/
143+
144+
# End of https://www.gitignore.io/api/java,gradle,kotlin,forgegradle,intellij+iml

0 commit comments

Comments
 (0)