CatPtain commited on
Commit
f122710
·
verified ·
1 Parent(s): e1fd143

Upload 14 files

Browse files
Files changed (1) hide show
  1. .gitignore +44 -0
.gitignore ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dependencies
2
+ node_modules/
3
+ npm-debug.log*
4
+ yarn-debug.log*
5
+ yarn-error.log*
6
+
7
+ # Runtime data
8
+ pids
9
+ *.pid
10
+ *.seed
11
+ *.pid.lock
12
+
13
+ # Coverage directory used by tools like istanbul
14
+ coverage/
15
+
16
+ # Environment variables
17
+ .env
18
+ .env.local
19
+ .env.development.local
20
+ .env.test.local
21
+ .env.production.local
22
+
23
+ # Logs
24
+ logs
25
+ *.log
26
+
27
+ # Temporary files
28
+ *.tmp
29
+ *.temp
30
+
31
+ # OS generated files
32
+ .DS_Store
33
+ .DS_Store?
34
+ ._*
35
+ .Spotlight-V100
36
+ .Trashes
37
+ ehthumbs.db
38
+ Thumbs.db
39
+
40
+ # IDE files
41
+ .vscode/
42
+ .idea/
43
+ *.swp
44
+ *.swo