kellogcheung commited on
Commit
e212a6f
·
1 Parent(s): eeb49e0

Add .gitignore; untrack accidentally-committed .DS_Store

Browse files
Files changed (2) hide show
  1. .DS_Store +0 -0
  2. .gitignore +29 -0
.DS_Store DELETED
Binary file (6.15 kB)
 
.gitignore ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # macOS
2
+ .DS_Store
3
+ .AppleDouble
4
+ .LSOverride
5
+ ._*
6
+
7
+ # Windows
8
+ Thumbs.db
9
+ ehthumbs.db
10
+ Desktop.ini
11
+ $RECYCLE.BIN/
12
+
13
+ # Editors / IDEs
14
+ .vscode/
15
+ .idea/
16
+ *.swp
17
+ *.swo
18
+ *~
19
+
20
+ # Node / build artifacts
21
+ node_modules/
22
+ dist/
23
+ .cache/
24
+ *.log
25
+
26
+ # Environment / secrets
27
+ .env
28
+ .env.*
29
+ !.env.example