Skip to content

Commit aab536d

Browse files
committed
Updated gitignore files
1 parent 7ea2ab6 commit aab536d

File tree

3 files changed

+101
-1
lines changed

3 files changed

+101
-1
lines changed

.gitignore

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,4 +341,21 @@ fabric.properties
341341
hs_err_pid*
342342

343343
# kotlin module
344-
*.kotlin_module
344+
*.kotlin_module
345+
346+
347+
## Gradle
348+
.gradle
349+
/build/
350+
351+
# Ignore Gradle GUI config
352+
gradle-app.setting
353+
354+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
355+
!gradle-wrapper.jar
356+
357+
# Cache of project
358+
.gradletasknamecache
359+
360+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
361+
# gradle/wrapper/gradle-wrapper.properties

Misc/kotlin-webgl/.gitignore

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
2+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
3+
4+
# User-specific stuff:
5+
.idea/workspace.xml
6+
.idea/tasks.xml
7+
8+
# Sensitive or high-churn files:
9+
.idea/dataSources/
10+
.idea/dataSources.ids
11+
.idea/dataSources.xml
12+
.idea/dataSources.local.xml
13+
.idea/sqlDataSources.xml
14+
.idea/dynamic.xml
15+
.idea/uiDesigner.xml
16+
17+
# Gradle:
18+
.idea/gradle.xml
19+
.idea/libraries
20+
21+
# Mongo Explorer plugin:
22+
.idea/mongoSettings.xml
23+
24+
## File-based project format:
25+
*.iws
26+
27+
## Plugin-specific files:
28+
29+
# IntelliJ
30+
/out/
31+
32+
# mpeltonen/sbt-idea plugin
33+
.idea_modules/
34+
35+
# JIRA plugin
36+
atlassian-ide-plugin.xml
37+
38+
# Crashlytics plugin (for Android Studio and IntelliJ)
39+
com_crashlytics_export_strings.xml
40+
crashlytics.properties
41+
crashlytics-build.properties
42+
fabric.properties
43+
44+
45+
## Java & Kotlin
46+
47+
*.class
48+
49+
# BlueJ files
50+
*.ctxt
51+
52+
# Mobile Tools for Java (J2ME)
53+
.mtj.tmp/
54+
55+
# Package Files #
56+
*.jar
57+
*.war
58+
*.ear
59+
60+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
61+
hs_err_pid*
62+
63+
# kotlin module
64+
*.kotlin_module
65+
66+
67+
## Gradle
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+
77+
# Cache of project
78+
.gradletasknamecache
79+
80+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
81+
# gradle/wrapper/gradle-wrapper.properties

Misc/kotlin-webgl/web/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# generated files
2+
/out/

0 commit comments

Comments
 (0)