Skip to content

Commit f442759

Browse files
Update gitignore
1 parent 93d07ba commit f442759

1 file changed

Lines changed: 164 additions & 1 deletion

File tree

.gitignore

Lines changed: 164 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,167 @@ build/
3535
.vscode/
3636

3737
### Mac OS ###
38-
.DS_Store
38+
.DS_Store
39+
40+
# Created by https://www.toptal.com/developers/gitignore/api/java,intellij,maven
41+
# Edit at https://www.toptal.com/developers/gitignore?templates=java,intellij,maven
42+
43+
### Intellij ###
44+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
45+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
46+
47+
# User-specific stuff
48+
.idea/**/workspace.xml
49+
.idea/**/tasks.xml
50+
.idea/**/usage.statistics.xml
51+
.idea/**/dictionaries
52+
.idea/**/shelf
53+
54+
# AWS User-specific
55+
.idea/**/aws.xml
56+
57+
# Generated files
58+
.idea/**/contentModel.xml
59+
60+
# Sensitive or high-churn files
61+
.idea/**/dataSources/
62+
.idea/**/dataSources.ids
63+
.idea/**/dataSources.local.xml
64+
.idea/**/sqlDataSources.xml
65+
.idea/**/dynamic.xml
66+
.idea/**/uiDesigner.xml
67+
.idea/**/dbnavigator.xml
68+
69+
# Gradle
70+
.idea/**/gradle.xml
71+
.idea/**/libraries
72+
73+
# Gradle and Maven with auto-import
74+
# When using Gradle or Maven with auto-import, you should exclude module files,
75+
# since they will be recreated, and may cause churn. Uncomment if using
76+
# auto-import.
77+
# .idea/artifacts
78+
# .idea/compiler.xml
79+
# .idea/jarRepositories.xml
80+
# .idea/modules.xml
81+
# .idea/*.iml
82+
# .idea/modules
83+
# *.iml
84+
# *.ipr
85+
86+
# CMake
87+
cmake-build-*/
88+
89+
# Mongo Explorer plugin
90+
.idea/**/mongoSettings.xml
91+
92+
# File-based project format
93+
*.iws
94+
95+
# IntelliJ
96+
out/
97+
98+
# mpeltonen/sbt-idea plugin
99+
.idea_modules/
100+
101+
# JIRA plugin
102+
atlassian-ide-plugin.xml
103+
104+
# Cursive Clojure plugin
105+
.idea/replstate.xml
106+
107+
# SonarLint plugin
108+
.idea/sonarlint/
109+
110+
# Crashlytics plugin (for Android Studio and IntelliJ)
111+
com_crashlytics_export_strings.xml
112+
crashlytics.properties
113+
crashlytics-build.properties
114+
fabric.properties
115+
116+
# Editor-based Rest Client
117+
.idea/httpRequests
118+
119+
# Android studio 3.1+ serialized cache file
120+
.idea/caches/build_file_checksums.ser
121+
122+
### Intellij Patch ###
123+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
124+
125+
# *.iml
126+
# modules.xml
127+
# .idea/misc.xml
128+
# *.ipr
129+
130+
# Sonarlint plugin
131+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
132+
.idea/**/sonarlint/
133+
134+
# SonarQube Plugin
135+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
136+
.idea/**/sonarIssues.xml
137+
138+
# Markdown Navigator plugin
139+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
140+
.idea/**/markdown-navigator.xml
141+
.idea/**/markdown-navigator-enh.xml
142+
.idea/**/markdown-navigator/
143+
144+
# Cache file creation bug
145+
# See https://youtrack.jetbrains.com/issue/JBR-2257
146+
.idea/$CACHE_FILE$
147+
148+
# CodeStream plugin
149+
# https://plugins.jetbrains.com/plugin/12206-codestream
150+
.idea/codestream.xml
151+
152+
# Azure Toolkit for IntelliJ plugin
153+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
154+
.idea/**/azureSettings.xml
155+
156+
### Java ###
157+
# Compiled class file
158+
*.class
159+
160+
# Log file
161+
*.log
162+
163+
# BlueJ files
164+
*.ctxt
165+
166+
# Mobile Tools for Java (J2ME)
167+
.mtj.tmp/
168+
169+
# Package Files #
170+
*.jar
171+
*.war
172+
*.nar
173+
*.ear
174+
*.zip
175+
*.tar.gz
176+
*.rar
177+
178+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
179+
hs_err_pid*
180+
replay_pid*
181+
182+
### Maven ###
183+
target/
184+
pom.xml.tag
185+
pom.xml.releaseBackup
186+
pom.xml.versionsBackup
187+
pom.xml.next
188+
release.properties
189+
dependency-reduced-pom.xml
190+
buildNumber.properties
191+
.mvn/timing.properties
192+
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
193+
.mvn/wrapper/maven-wrapper.jar
194+
195+
# Eclipse m2e generated files
196+
# Eclipse Core
197+
.project
198+
# JDT-specific (Eclipse Java Development Tools)
199+
.classpath
200+
201+
# End of https://www.toptal.com/developers/gitignore/api/java,intellij,maven

0 commit comments

Comments
 (0)