1
+ # Created by https://www.toptal.com/developers/gitignore/api/react,node,vscode,dotenv
2
+ # Edit at https://www.toptal.com/developers/gitignore?templates=react,node,vscode,dotenv
3
+
4
+ # ## dotenv ###
5
+ .env
6
+ * .env
7
+
8
+ # ## Node ###
9
+ # Logs
10
+ logs
11
+ * .log
12
+ npm-debug.log *
13
+ yarn-debug.log *
14
+ yarn-error.log *
15
+ lerna-debug.log *
16
+
17
+ # Diagnostic reports (https://nodejs.org/api/report.html)
18
+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
19
+
20
+ # Runtime data
21
+ pids
22
+ * .pid
23
+ * .seed
24
+ * .pid.lock
25
+
26
+ # Directory for instrumented libs generated by jscoverage/JSCover
27
+ lib-cov
28
+
29
+ # Coverage directory used by tools like istanbul
30
+ coverage
31
+ * .lcov
32
+
33
+ # nyc test coverage
34
+ .nyc_output
35
+
36
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
37
+ .grunt
38
+
39
+ # Bower dependency directory (https://bower.io/)
40
+ bower_components
41
+
42
+ # node-waf configuration
43
+ .lock-wscript
44
+
45
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
46
+ build /Release
47
+
48
+ # Dependency directories
49
+ node_modules /
50
+ jspm_packages /
51
+
52
+ # TypeScript v1 declaration files
53
+ typings /
54
+
55
+ # TypeScript cache
56
+ * .tsbuildinfo
57
+
58
+ # Optional npm cache directory
59
+ .npm
60
+
61
+ # Optional eslint cache
62
+ .eslintcache
63
+
64
+ # Microbundle cache
65
+ .rpt2_cache /
66
+ .rts2_cache_cjs /
67
+ .rts2_cache_es /
68
+ .rts2_cache_umd /
69
+
70
+ # Optional REPL history
71
+ .node_repl_history
72
+
73
+ # Output of 'npm pack'
74
+ * .tgz
75
+
76
+ # Yarn Integrity file
77
+ .yarn-integrity
78
+
79
+ # dotenv environment variables file
80
+ .env.test
81
+ .env * .local
82
+
83
+ # parcel-bundler cache (https://parceljs.org/)
84
+ .cache
85
+ .parcel-cache
86
+
87
+ # Next.js build output
88
+ .next
89
+
90
+ # Nuxt.js build / generate output
91
+ .nuxt
92
+ dist
93
+
94
+ # Gatsby files
95
+ .cache /
96
+ # Comment in the public line in if your project uses Gatsby and not Next.js
97
+ # https://nextjs.org/blog/next-9-1#public-directory-support
98
+ # public
99
+
100
+ # vuepress build output
101
+ .vuepress /dist
102
+
103
+ # Serverless directories
104
+ .serverless /
105
+
106
+ # FuseBox cache
107
+ .fusebox /
108
+
109
+ # DynamoDB Local files
110
+ .dynamodb /
111
+
112
+ # TernJS port file
113
+ .tern-port
114
+
115
+ # Stores VSCode versions used for testing VSCode extensions
116
+ .vscode-test
117
+
118
+ # ## react ###
119
+ .DS_ *
120
+ ** /* .backup. *
121
+ ** /* .back. *
122
+
123
+ node_modules
124
+
125
+ * .sublime *
126
+
127
+ psd
128
+ thumb
129
+ sketch
130
+
131
+ # ## vscode ###
132
+ .vscode /*
133
+ ! .vscode /settings.json
134
+ ! .vscode /tasks.json
135
+ ! .vscode /launch.json
136
+ ! .vscode /extensions.json
137
+ * .code-workspace
138
+
139
+ # End of https://www.toptal.com/developers/gitignore/api/react,node,vscode,dotenv
0 commit comments