-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.gitignore
111 lines (100 loc) · 2.34 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
100
101
102
103
104
105
106
107
108
109
110
111
# ! Note that any pattern with a / in the beginning OR MIDDLE (but not end) will
# ! be considered relative to this file ONLY. Matching subdirs will NOT match!
# ! Otherwise, patterns will match entities in any directory or subdirectory.
# ! Prepend ** (or **/) if advanced subdir matching of complex paths is desired.
# ! See https://git-scm.com/docs/gitignore#_pattern_format
# Ignore temporary files in any subdir by giving them a special name
*.ignore
*.ignore.*
ignore.*
tmp
# Ignore sensitive files in any subdir
.env
.npmrc
*.local
# Ignore transpiled source in any subdir (used for advanced debugging)
.transpiled
# Ignore packaged files that probably shouldn't be committed
*.tgz
*.tar.gz
# Ignore relevant build artifacts in any subdir (with exceptions)
*.tsbuildinfo
# ? Preceding asterisks "**/" are needed to match any build subdir in monorepos
# ? and proceeding asterisks "/**" allow subsequent negations to be interpreted
# ? properly. See: https://git-scm.com/docs/gitignore#_pattern_format
**/build/**
# ? This and other negations must end in "/**" to be interpreted properly.
!**/src/**/build/**
# ? This and other negations must end in "/**" to be interpreted properly.
!**/docs/**/build/**
dist
coverage
lib-cov
.nyc_output
.grunt
bower_components
.lock-wscript
build/Release
.vercel
.next
next-env.d.ts
# Ignore cloned GitHub wiki (do not regard it as a so-called "submodule")
# ? Note that this complex path is relative to this file
/.wiki
# Ignore local vscode configuration
# ? Note that this complex path is relative to this file
/.vscode/**
# ? Note that this complex path is relative to this file
!/.vscode/*.example.json
# Ignore relevant NPM and JSPM artifacts in any subdir
.npm
node_modules
jspm_packages
# Ignore logs in any subdir
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Ignore random nothingness in any subdir
.eslintcache
.node_repl_history
.yarn-integrity
*.DS_Store
.AppleDouble
.LSOverride
*~
.fuse_hidden*
.directory
.Trash-*
.nfs*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
pids
*.pid
*.seed
*.pid.lock
Thumbs.db
ehthumbs.db
ehthumbs_vista.db
Desktop.ini
$RECYCLE.BIN
*.cab
*.msi
*.msm
*.msp
*.lnk
_book
CertificateAuthorityCertificate.pem
# Custom
external-scripts/bin