-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
87 lines (76 loc) · 707 Bytes
/
.gitignore
File metadata and controls
87 lines (76 loc) · 707 Bytes
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
# dependencies
node_modules/
# yarn
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
# npm
package-lock.json
npm-debug.log*
# pnpm
pnpm-lock.yaml
# eslint
.eslintcache
# misc
.DS_Store
*.log
*.tmp
*.swp
# IDE
.vscode/
.idea/
# cli
/dist/
# build output
build/
out/
.next/
coverage/
# environment & secrets
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
*.secret*
*.key
*.pem
*.crt
*.p12
*.pfx
*.cert
secrets.json
# large files
*.zip
*.tar
*.tar.gz
*.rar
*.7z
*.gz
*.bz2
*.xz
*.tgz
*.mp4
*.mp3
*.mov
*.avi
*.mkv
*.flac
*.wav
*.webm
*.ogg
*.iso
*.img
*.exe
*.dll
*.bin
*.apk
*.dmg
*.msi
*.pkg
# OS generated files
Thumbs.db
Desktop.ini