forked from BetonQuest/BetonQuest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
66 lines (49 loc) · 1.49 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
## BetonQuest specific, maintained ignores ##
# Maven target directory
**/target/
# IntelliJ
# JetBrains claims that everything except a few files should be added. However, users often have unique files that are generated by IntelliJ plugins.
# These may contain secrets or personal preferences. Instead we chose to track specific files with Git and ignore the rest.
# These are not documented using excludes in this file but were just added to the index via git add.
# Offical statement https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
out/
*.ipr
.idea
*.iml
## General ignores to helpout in different dev / idea environments ##
# IntelliJ Plugin - mpeltonen/sbt-idea plugin
.idea_modules/
# File-based project format
*.iws
# JIRA plugin
atlassian-ide-plugin.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Linux
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences
.directory
# Linux trash folder which might appear on any partition or disk
.Trash-*
# .nfs files are created when an open file is removed but is still being accessed
.nfs*
# VisualStudioCode
.vscode/*
# VisualStudioCode Patch
# Ignore all local history of files
.history
# Ignore deploy-key just in case
deploy-key
# Eclipse
**/bin/
**/.settings/
**/build/
/resources/
.classpath
.project
# Python Virtual Environments
venv/