Skip to content

Commit 1acbd48

Browse files
committed
chore: create gitignore file
Signed-off-by: Otavio Santana <[email protected]>
1 parent 971e8f0 commit 1acbd48

File tree

1 file changed

+106
-0
lines changed

1 file changed

+106
-0
lines changed

.gitignore

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,107 @@
11
target
2+
3+
.idea/
4+
5+
cmake-build-*/
6+
7+
# Mongo Explorer plugin
8+
.idea/**/mongoSettings.xml
9+
10+
# File-based project format
11+
*.iws
12+
13+
# IntelliJ
14+
out/
15+
16+
# Crashlytics plugin (for Android Studio and IntelliJ)
17+
com_crashlytics_export_strings.xml
18+
crashlytics.properties
19+
crashlytics-build.properties
20+
fabric.properties
21+
22+
# Editor-based Rest Client
23+
.idea/httpRequests
24+
25+
# Android studio 3.1+ serialized cache file
26+
.idea/caches/build_file_checksums.ser
27+
28+
### Intellij Patch ###
29+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
30+
31+
# *.iml
32+
# modules.xml
33+
# .idea/misc.xml
34+
# *.ipr
35+
36+
# Sonarlint plugin
37+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
38+
.idea/**/sonarlint/
39+
40+
# SonarQube Plugin
41+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
42+
.idea/**/sonarIssues.xml
43+
44+
# Markdown Navigator plugin
45+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
46+
.idea/**/markdown-navigator.xml
47+
.idea/**/markdown-navigator-enh.xml
48+
.idea/**/markdown-navigator/
49+
50+
# Cache file creation bug
51+
# See https://youtrack.jetbrains.com/issue/JBR-2257
52+
.idea/$CACHE_FILE$
53+
54+
# CodeStream plugin
55+
# https://plugins.jetbrains.com/plugin/12206-codestream
56+
.idea/codestream.xml
57+
58+
# Azure Toolkit for IntelliJ plugin
59+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
60+
.idea/**/azureSettings.xml
61+
62+
### Java ###
63+
# Compiled class file
64+
*.class
65+
66+
# Log file
67+
*.log
68+
69+
# BlueJ files
70+
*.ctxt
71+
72+
# Mobile Tools for Java (J2ME)
73+
.mtj.tmp/
74+
75+
# Package Files #
76+
*.jar
77+
*.war
78+
*.nar
79+
*.ear
80+
*.zip
81+
*.tar.gz
82+
*.rar
83+
84+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
85+
hs_err_pid*
86+
replay_pid*
87+
88+
### Maven ###
89+
target/
90+
pom.xml.tag
91+
pom.xml.releaseBackup
92+
pom.xml.versionsBackup
93+
pom.xml.next
94+
release.properties
95+
dependency-reduced-pom.xml
96+
buildNumber.properties
97+
.mvn/timing.properties
98+
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
99+
.mvn/wrapper/maven-wrapper.jar
100+
101+
# Eclipse m2e generated files
102+
# Eclipse Core
103+
.project
104+
# JDT-specific (Eclipse Java Development Tools)
105+
.classpath
106+
107+
# End of https://www.toptal.com/developers/gitignore/api/java,maven,intellij

0 commit comments

Comments
 (0)