-
Notifications
You must be signed in to change notification settings - Fork 27
/
.gitignore
99 lines (83 loc) · 1.2 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# General
!*.keep
# Ignore OS Files
*.linux
.DS_Store
*.ds-store*
.fuse_hidden*
.Trash-*
.directory
[Dd]esktop.ini
.Trashes
*.lnk
# git
*.patch
*.diff
# Ignore Obsidian Files
.obsidian
.trash
# building.. because I almost did so, oops!
out/
.env
*~
/bin
.nfs*
$RECYCLE.BIN/
build
build_output/*
dist
*.exe
*.out
*.app
*.o
*.so
# IDEs/DEs
.idea/
.vscode/*
*.sublime-*
.history
tags
# dev platforms/package managers
.npm
.yarn/*
node_modules/
jspm_packages/
# Activity Data
sync.log
some.log
dlFolderLastChange
# tmp files
*.temp
*.tmp
/tmp/*
/tmp
.cache
*.pid
*.seed
*.pid.lock
# default location of (large) coc extensions; actually not necessary because of `g.coc_data_home` is changed in the coc-config, but still put here as a safety net
.config/coc
# in case of accidental saving of such files in the repo
*.mp4
*.part
# safety net in case sensitive data is accidentally moved
pw.*
*.kdb
*.kdbx
*.pfx
*.key
# logs
*.log
*.bak
*.errors
*.stackdump
crash-*
# Various Maintainers's Task Tracking file for TTRPG-Share Management
# Sigrunixia
The-Purple-Scale-Ledger.md
# Editorconfigs, Linters, and Prettiers we have not decided on yet
*.prettier*
*.editorconfig*
*.stylelint*
*.markdownlint*
*.markdown-ignore*