Skip to content

Commit 384c4e2

Browse files
committed
chore: update .gitignore
1 parent 3472897 commit 384c4e2

File tree

1 file changed

+123
-2
lines changed

1 file changed

+123
-2
lines changed

.gitignore

Lines changed: 123 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,130 @@
1+
## Fully .gtignore for IntelliJ, Android Studio and Gradle based Java projects
2+
## References:
3+
## - https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
4+
## - https://github.com/android/platform-samples/blob/main/.gitignore
5+
6+
# User-specific stuff
7+
.idea/**/workspace.xml
8+
.idea/**/tasks.xml
9+
.idea/**/usage.statistics.xml
10+
.idea/**/dictionaries
11+
.idea/**/shelf
12+
13+
# AWS User-specific
14+
.idea/**/aws.xml
15+
16+
# Generated files
17+
.idea/**/contentModel.xml
18+
19+
# Sensitive or high-churn files
20+
.idea/**/dataSources/
21+
.idea/**/dataSources.ids
22+
.idea/**/dataSources.local.xml
23+
.idea/**/sqlDataSources.xml
24+
.idea/**/dynamic.xml
25+
.idea/**/uiDesigner.xml
26+
.idea/**/dbnavigator.xml
27+
28+
# Gradle
29+
.idea/**/gradle.xml
30+
.idea/**/libraries
31+
32+
# Gradle and Maven with auto-import
33+
.idea/.name
34+
.idea/artifacts
35+
.idea/compiler.xml
36+
.idea/jarRepositories.xml
37+
.idea/modules.xml
38+
.idea/*.iml
39+
.idea/modules
40+
.idea/caches
41+
.idea/material_theme**
42+
.idea/other.xml
43+
*.iml
44+
*.ipr
45+
46+
# Kotlin
47+
.kotlin
48+
.idea/kotlinc.xml
49+
50+
# Misc
51+
.idea/misc.xml
52+
.idea/markdown.xml
53+
54+
# CMake
55+
cmake-build-*/
56+
57+
# Mongo Explorer plugin
58+
.idea/**/mongoSettings.xml
59+
60+
# File-based project format
61+
*.iws
62+
63+
# IntelliJ
64+
out/
65+
66+
# mpeltonen/sbt-idea plugin
67+
.idea_modules/
68+
69+
# JIRA plugin
70+
atlassian-ide-plugin.xml
71+
72+
# Cursive Clojure plugin
73+
.idea/replstate.xml
74+
75+
# SonarLint plugin
76+
.idea/sonarlint/
77+
78+
# Crashlytics plugin (for Android Studio and IntelliJ)
79+
com_crashlytics_export_strings.xml
80+
crashlytics.properties
81+
crashlytics-build.properties
82+
fabric.properties
83+
84+
# Editor-based Rest Client
85+
.idea/httpRequests
86+
87+
# Android studio 3.1+ serialized cache file
88+
.idea/caches/build_file_checksums.ser
89+
90+
# Android studio 3.1+ additional
91+
.idea/deployment*.xml
92+
.idea/assetWizardSettings.xml
93+
.idea/androidTestResultsUserPreferences.xml
94+
95+
# Android projects
96+
.idea/AndroidProjectSystem.xml
97+
.idea/deviceManager.xml
98+
**/local.properties
99+
/captures
100+
.externalNativeBuild
101+
.cxx
102+
103+
# Gradle projects
104+
.gradle
105+
build/
106+
107+
# Mkdocs temporary serving folder
108+
docs-gen
109+
site
110+
*.bak
111+
.idea/appInsightsSettings.xml
112+
113+
# Discord plugin for IntelliJ
114+
.idea/discord.xml
115+
116+
# Copilot for IntelliJ
117+
.idea/copilot**
118+
119+
# Mac OS
120+
.DS_Store
121+
122+
# Web App Misc
1123
coverage/
2124
bower_components/
3125
node_modules/
4126
jspm_packages/
5127
typings/
6-
out/
7128
logs
8129
*.log
9130
npm-debug.log*
@@ -22,4 +143,4 @@ lib-cov
22143
.node_repl_history
23144
*.tgz
24145
.yarn-integrity
25-
.env
146+
.env

0 commit comments

Comments
 (0)