1
+ /target
2
+ Cargo.lock
3
+
4
+ # Created by https://www.gitignore.io/api/windows
5
+ # Edit at https://www.gitignore.io/?templates=windows
6
+
7
+ # ## Windows ###
8
+ # Windows thumbnail cache files
9
+ Thumbs.db
10
+ Thumbs.db:encryptable
11
+ ehthumbs.db
12
+ ehthumbs_vista.db
13
+
14
+ # Dump file
15
+ * .stackdump
16
+
17
+ # Folder config file
18
+ [Dd ]esktop.ini
19
+
20
+ # Recycle Bin used on file shares
21
+ $RECYCLE.BIN /
22
+
23
+ # Windows Installer files
24
+ * .cab
25
+ * .msi
26
+ * .msix
27
+ * .msm
28
+ * .msp
29
+
30
+ # Windows shortcuts
31
+ * .lnk
32
+
33
+ # End of https://www.gitignore.io/api/windows
34
+
35
+ # Created by https://www.gitignore.io/api/macos
36
+ # Edit at https://www.gitignore.io/?templates=macos
37
+
38
+ # ## macOS ###
39
+ # General
40
+ .DS_Store
41
+ .AppleDouble
42
+ .LSOverride
43
+
44
+ # Icon must end with two \r
45
+ Icon
46
+
47
+ # Thumbnails
48
+ ._ *
49
+
50
+ # Files that might appear in the root of a volume
51
+ .DocumentRevisions-V100
52
+ .fseventsd
53
+ .Spotlight-V100
54
+ .TemporaryItems
55
+ .Trashes
56
+ .VolumeIcon.icns
57
+ .com.apple.timemachine.donotpresent
58
+
59
+ # Directories potentially created on remote AFP share
60
+ .AppleDB
61
+ .AppleDesktop
62
+ Network Trash Folder
63
+ Temporary Items
64
+ .apdisk
65
+
66
+ # End of https://www.gitignore.io/api/macos
67
+
68
+ # Created by https://www.gitignore.io/api/node
69
+ # Edit at https://www.gitignore.io/?templates=node
70
+
71
+ # ## Node ###
72
+ # Logs
73
+ logs
74
+ * .log
75
+ npm-debug.log *
76
+ yarn-debug.log *
77
+ yarn-error.log *
78
+ lerna-debug.log *
79
+
80
+ # Diagnostic reports (https://nodejs.org/api/report.html)
81
+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
82
+
83
+ # Runtime data
84
+ pids
85
+ * .pid
86
+ * .seed
87
+ * .pid.lock
88
+
89
+ # Directory for instrumented libs generated by jscoverage/JSCover
90
+ lib-cov
91
+
92
+ # Coverage directory used by tools like istanbul
93
+ coverage
94
+ * .lcov
95
+
96
+ # nyc test coverage
97
+ .nyc_output
98
+
99
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
100
+ .grunt
101
+
102
+ # Bower dependency directory (https://bower.io/)
103
+ bower_components
104
+
105
+ # node-waf configuration
106
+ .lock-wscript
107
+
108
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
109
+ build /Release
110
+
111
+ # Dependency directories
112
+ node_modules /
113
+ jspm_packages /
114
+
115
+ # TypeScript v1 declaration files
116
+ typings /
117
+
118
+ # TypeScript cache
119
+ * .tsbuildinfo
120
+
121
+ # Optional npm cache directory
122
+ .npm
123
+
124
+ # Optional eslint cache
125
+ .eslintcache
126
+
127
+ # Optional REPL history
128
+ .node_repl_history
129
+
130
+ # Output of 'npm pack'
131
+ * .tgz
132
+
133
+ # Yarn Integrity file
134
+ .yarn-integrity
135
+
136
+ # dotenv environment variables file
137
+ .env
138
+ .env.test
139
+
140
+ # parcel-bundler cache (https://parceljs.org/)
141
+ .cache
142
+
143
+ # next.js build output
144
+ .next
145
+
146
+ # nuxt.js build output
147
+ .nuxt
148
+
149
+ # rollup.js default build output
150
+ dist /
151
+
152
+ # Uncomment the public line if your project uses Gatsby
153
+ # https://nextjs.org/blog/next-9-1#public-directory-support
154
+ # https://create-react-app.dev/docs/using-the-public-folder/#docsNav
155
+ # public
156
+
157
+ # Storybook build outputs
158
+ .out
159
+ .storybook-out
160
+
161
+ # vuepress build output
162
+ .vuepress /dist
163
+
164
+ # Serverless directories
165
+ .serverless /
166
+
167
+ # FuseBox cache
168
+ .fusebox /
169
+
170
+ # DynamoDB Local files
171
+ .dynamodb /
172
+
173
+ # Temporary folders
174
+ tmp /
175
+ temp /
176
+
177
+ # End of https://www.gitignore.io/api/node
178
+
179
+ * .node
0 commit comments