File tree Expand file tree Collapse file tree 2 files changed +137
-6
lines changed Expand file tree Collapse file tree 2 files changed +137
-6
lines changed Original file line number Diff line number Diff line change 1
- build
2
- lib
3
- node_modules
4
- npm-debug.log
1
+
2
+ # Created by https://www.gitignore.io/api/macos,windows,linux,node
3
+
4
+ # ## Linux ###
5
+ * ~
6
+
7
+ # temporary files which can be created if a process still has a handle open of a deleted file
8
+ .fuse_hidden *
9
+
10
+ # KDE directory preferences
11
+ .directory
12
+
13
+ # Linux trash folder which might appear on any partition or disk
14
+ .Trash- *
15
+
16
+ # .nfs files are created when an open file is removed but is still being accessed
17
+ .nfs *
18
+
19
+ # ## macOS ###
20
+ * .DS_Store
21
+ .AppleDouble
22
+ .LSOverride
23
+
24
+ # Icon must end with two \r
25
+ Icon
26
+
27
+ # Thumbnails
28
+ ._ *
29
+
30
+ # Files that might appear in the root of a volume
31
+ .DocumentRevisions-V100
32
+ .fseventsd
33
+ .Spotlight-V100
34
+ .TemporaryItems
35
+ .Trashes
36
+ .VolumeIcon.icns
37
+ .com.apple.timemachine.donotpresent
38
+
39
+ # Directories potentially created on remote AFP share
40
+ .AppleDB
41
+ .AppleDesktop
42
+ Network Trash Folder
43
+ Temporary Items
44
+ .apdisk
45
+
46
+ # ## Node ###
47
+ # Logs
48
+ logs
49
+ * .log
50
+ npm-debug.log *
51
+ yarn-debug.log *
52
+ yarn-error.log *
53
+
54
+ # Runtime data
55
+ pids
56
+ * .pid
57
+ * .seed
58
+ * .pid.lock
59
+
60
+ # Directory for instrumented libs generated by jscoverage/JSCover
61
+ lib-cov
62
+
63
+ # Coverage directory used by tools like istanbul
64
+ coverage
65
+
66
+ # nyc test coverage
67
+ .nyc_output
68
+
69
+ # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
70
+ .grunt
71
+
72
+ # Bower dependency directory (https://bower.io/)
73
+ bower_components
74
+
75
+ # node-waf configuration
76
+ .lock-wscript
77
+
78
+ # Compiled binary addons (http://nodejs.org/api/addons.html)
79
+ build /Release
80
+
81
+ # Dependency directories
82
+ node_modules /
83
+ jspm_packages /
84
+
85
+ # Typescript v1 declaration files
86
+ typings /
87
+
88
+ # Optional npm cache directory
89
+ .npm
90
+
91
+ # Optional eslint cache
92
+ .eslintcache
93
+
94
+ # Optional REPL history
95
+ .node_repl_history
96
+
97
+ # Output of 'npm pack'
98
+ * .tgz
99
+
100
+ # Yarn Integrity file
101
+ .yarn-integrity
102
+
103
+ # dotenv environment variables file
104
+ .env
105
+
106
+
107
+ # ## Windows ###
108
+ # Windows thumbnail cache files
109
+ Thumbs.db
110
+ ehthumbs.db
111
+ ehthumbs_vista.db
112
+
113
+ # Folder config file
114
+ Desktop.ini
115
+
116
+ # Recycle Bin used on file shares
117
+ $RECYCLE.BIN /
118
+
119
+ # Windows Installer files
120
+ * .cab
121
+ * .msi
122
+ * .msm
123
+ * .msp
124
+
125
+ # Windows shortcuts
126
+ * .lnk
127
+
128
+ # Lockfiles
129
+ package-lock.json
130
+ yarn.lock
131
+
132
+ # Gitbook
133
+ _book
134
+
135
+ # IDEs
136
+ .idea
137
+ .vscode
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments