File tree 1 file changed +72
-1
lines changed
1 file changed +72
-1
lines changed Original file line number Diff line number Diff line change 1
- .DS_Store
1
+ # Ignore all
2
+ *
3
+
4
+ # Unignore all with extensions
5
+ ! * . *
6
+
7
+ # Unignore all dirs
8
+ ! * /
9
+
10
+ .DS_Store
11
+
12
+ # Logs
13
+ logs
14
+ * .log
15
+ npm-debug.log *
16
+ yarn-debug.log *
17
+ yarn-error.log *
18
+
19
+ # Runtime data
20
+ pids
21
+ * .pid
22
+ * .seed
23
+ * .pid.lock
24
+
25
+ # Directory for instrumented libs generated by jscoverage/JSCover
26
+ lib-cov
27
+
28
+ # Coverage directory used by tools like istanbul
29
+ coverage
30
+
31
+ # nyc test coverage
32
+ .nyc_output
33
+
34
+ # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
35
+ .grunt
36
+
37
+ # Bower dependency directory (https://bower.io/)
38
+ bower_components
39
+
40
+ # node-waf configuration
41
+ .lock-wscript
42
+
43
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
44
+ build /Release
45
+
46
+ # Dependency directories
47
+ node_modules /
48
+ jspm_packages /
49
+
50
+ # TypeScript v1 declaration files
51
+ typings /
52
+
53
+ # Optional npm cache directory
54
+ .npm
55
+
56
+ # Optional eslint cache
57
+ .eslintcache
58
+
59
+ # Optional REPL history
60
+ .node_repl_history
61
+
62
+ # Output of 'npm pack'
63
+ * .tgz
64
+
65
+ # Yarn Integrity file
66
+ .yarn-integrity
67
+
68
+ # dotenv environment variables file
69
+ .env
70
+
71
+ # next.js build output
72
+ .next
You can’t perform that action at this time.
0 commit comments