Skip to content

Commit c2c11f5

Browse files
author
Pedro Pablo Bustamante Barrera
committed
chore: update .gitignore
1 parent bf2a644 commit c2c11f5

File tree

1 file changed

+146
-25
lines changed

1 file changed

+146
-25
lines changed

.gitignore

Lines changed: 146 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,156 @@
1-
*target*
1+
# Created by https://www.toptal.com/developers/gitignore/api/maven,intellij+all,visualstudiocode,java
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=maven,intellij+all,visualstudiocode,java
3+
4+
### Intellij+all ###
5+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
6+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7+
8+
# User-specific stuff
9+
.idea/**/workspace.xml
10+
.idea/**/tasks.xml
11+
.idea/**/usage.statistics.xml
12+
.idea/**/dictionaries
13+
.idea/**/shelf
14+
15+
# AWS User-specific
16+
.idea/**/aws.xml
17+
18+
# Generated files
19+
.idea/**/contentModel.xml
20+
21+
# Sensitive or high-churn files
22+
.idea/**/dataSources/
23+
.idea/**/dataSources.ids
24+
.idea/**/dataSources.local.xml
25+
.idea/**/sqlDataSources.xml
26+
.idea/**/dynamic.xml
27+
.idea/**/uiDesigner.xml
28+
.idea/**/dbnavigator.xml
29+
30+
# Gradle
31+
.idea/**/gradle.xml
32+
.idea/**/libraries
33+
34+
# Gradle and Maven with auto-import
35+
# When using Gradle or Maven with auto-import, you should exclude module files,
36+
# since they will be recreated, and may cause churn. Uncomment if using
37+
# auto-import.
38+
# .idea/artifacts
39+
# .idea/compiler.xml
40+
# .idea/jarRepositories.xml
41+
# .idea/modules.xml
42+
# .idea/*.iml
43+
# .idea/modules
44+
# *.iml
45+
# *.ipr
46+
47+
# CMake
48+
cmake-build-*/
49+
50+
# Mongo Explorer plugin
51+
.idea/**/mongoSettings.xml
52+
53+
# File-based project format
54+
*.iws
55+
56+
# IntelliJ
57+
out/
58+
59+
# mpeltonen/sbt-idea plugin
60+
.idea_modules/
61+
62+
# JIRA plugin
63+
atlassian-ide-plugin.xml
64+
65+
# Cursive Clojure plugin
66+
.idea/replstate.xml
67+
68+
# SonarLint plugin
69+
.idea/sonarlint/
70+
71+
# Crashlytics plugin (for Android Studio and IntelliJ)
72+
com_crashlytics_export_strings.xml
73+
crashlytics.properties
74+
crashlytics-build.properties
75+
fabric.properties
76+
77+
# Editor-based Rest Client
78+
.idea/httpRequests
79+
80+
# Android studio 3.1+ serialized cache file
81+
.idea/caches/build_file_checksums.ser
82+
83+
### Intellij+all Patch ###
84+
# Ignore everything but code style settings and run configurations
85+
# that are supposed to be shared within teams.
86+
87+
.idea/*
88+
89+
!.idea/codeStyles
90+
!.idea/runConfigurations
91+
92+
### Java ###
93+
# Compiled class file
94+
*.class
95+
96+
# Log file
97+
*.log
98+
99+
# BlueJ files
100+
*.ctxt
101+
102+
# Mobile Tools for Java (J2ME)
103+
.mtj.tmp/
104+
105+
# Package Files #
2106
*.jar
3107
*.war
108+
*.nar
4109
*.ear
5-
*.class
110+
*.zip
111+
*.tar.gz
112+
*.rar
6113

7-
# eclipse specific git ignore
8-
*.pydevproject
114+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
115+
hs_err_pid*
116+
replay_pid*
117+
118+
### Maven ###
119+
target/
120+
pom.xml.tag
121+
pom.xml.releaseBackup
122+
pom.xml.versionsBackup
123+
pom.xml.next
124+
release.properties
125+
dependency-reduced-pom.xml
126+
buildNumber.properties
127+
.mvn/timing.properties
128+
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
129+
.mvn/wrapper/maven-wrapper.jar
130+
131+
# Eclipse m2e generated files
132+
# Eclipse Core
9133
.project
10-
.metadata
11-
bin/**
12-
tmp/**
13-
tmp/**/*
14-
*.tmp
15-
*.bak
16-
*.swp
17-
*~.nib
18-
local.properties
134+
# JDT-specific (Eclipse Java Development Tools)
19135
.classpath
20-
.settings/
21-
.loadpath
22136

23-
# External tool builders
24-
.externalToolBuilders/
137+
### VisualStudioCode ###
138+
.vscode/*
139+
!.vscode/settings.json
140+
!.vscode/tasks.json
141+
!.vscode/launch.json
142+
!.vscode/extensions.json
143+
!.vscode/*.code-snippets
144+
145+
# Local History for Visual Studio Code
146+
.history/
25147

26-
# Locally stored "Eclipse launch configurations"
27-
*.launch
148+
# Built Visual Studio Code Extensions
149+
*.vsix
28150

29-
.vscode
151+
### VisualStudioCode Patch ###
152+
# Ignore all local history of files
153+
.history
154+
.ionide
30155

31-
######################
32-
# Intellij
33-
######################
34-
.idea/
35-
*.iml
156+
# End of https://www.toptal.com/developers/gitignore/api/maven,intellij+all,visualstudiocode,java

0 commit comments

Comments
 (0)