1
1
# Logs
2
2
logs
3
3
* .log
4
- .idea /
4
+ npm-debug.log *
5
+ yarn-debug.log *
6
+ yarn-error.log *
7
+ lerna-debug.log *
8
+ .pnpm-debug.log *
9
+
10
+ # Diagnostic reports (https://nodejs.org/api/report.html)
11
+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
12
+
5
13
# Runtime data
6
14
pids
7
15
* .pid
8
16
* .seed
9
- tests /certs
10
- tests /
11
- website /nodejs /
12
- website /assets /
13
- website /forums /
14
- website /lib /
15
- website /* .html
16
- website /* /.htaccess
17
- website /example /*
18
- build /
17
+ * .pid.lock
19
18
20
19
# Directory for instrumented libs generated by jscoverage/JSCover
21
20
lib-cov
22
21
23
22
# Coverage directory used by tools like istanbul
24
23
coverage
24
+ * .lcov
25
+
26
+ # nyc test coverage
25
27
.nyc_output
26
28
27
- # Grunt intermediate storage (http ://gruntjs.com/creating-plugins#storing-task-files)
29
+ # Grunt intermediate storage (https ://gruntjs.com/creating-plugins#storing-task-files)
28
30
.grunt
29
31
30
- # Compiled binary addons (http://nodejs.org/api/addons.html)
32
+ # Bower dependency directory (https://bower.io/)
33
+ bower_components
34
+
35
+ # node-waf configuration
36
+ .lock-wscript
37
+
38
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
31
39
build /Release
32
40
33
- # Dependency directory
34
- # Deployed apps should consider commenting this line out:
35
- # see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
36
- node_modules
37
- # =========================
38
- # Operating System Files
39
- # =========================
41
+ # Dependency directories
42
+ node_modules /
43
+ jspm_packages /
44
+
45
+ # Snowpack dependency directory (https://snowpack.dev/)
46
+ web_modules /
47
+
48
+ # TypeScript cache
49
+ * .tsbuildinfo
50
+
51
+ # Optional npm cache directory
52
+ .npm
53
+
54
+ # Optional eslint cache
55
+ .eslintcache
56
+
57
+ # Optional stylelint cache
58
+ .stylelintcache
59
+
60
+ # Microbundle cache
61
+ .rpt2_cache /
62
+ .rts2_cache_cjs /
63
+ .rts2_cache_es /
64
+ .rts2_cache_umd /
65
+
66
+ # Optional REPL history
67
+ .node_repl_history
68
+
69
+ # Output of 'npm pack'
70
+ * .tgz
71
+
72
+ # Yarn Integrity file
73
+ .yarn-integrity
74
+
75
+ # dotenv environment variable files
76
+ .env
77
+ .env.development.local
78
+ .env.test.local
79
+ .env.production.local
80
+ .env.local
81
+
82
+ # parcel-bundler cache (https://parceljs.org/)
83
+ .cache
84
+ .parcel-cache
85
+
86
+ # Next.js build output
87
+ .next
88
+ out
40
89
41
- # OSX
42
- # =========================
90
+ # Nuxt.js build / generate output
91
+ .nuxt
43
92
44
- .DS_Store
45
- .AppleDouble
46
- .LSOverride
93
+ # Gatsby files
94
+ .cache /
95
+ # Comment in the public line in if your project uses Gatsby and not Next.js
96
+ # https://nextjs.org/blog/next-9-1#public-directory-support
97
+ # public
47
98
48
- # Icon must ends with two \r.
49
- Icon
99
+ # vuepress build output
100
+ .vuepress / dist
50
101
102
+ # vuepress v2.x temp and cache directory
103
+ .temp
104
+ .cache
51
105
52
- # Thumbnails
53
- ._ *
106
+ # Docusaurus cache and generated files
107
+ .docusaurus
54
108
55
- # Files that might appear on external disk
56
- .Spotlight-V100
57
- .Trashes
109
+ # Serverless directories
110
+ .serverless /
58
111
59
- # Windows
60
- # =========================
112
+ # FuseBox cache
113
+ .fusebox /
61
114
62
- # Windows image file caches
63
- Thumbs.db
64
- ehthumbs.db
115
+ # DynamoDB Local files
116
+ .dynamodb /
65
117
66
- # Folder config file
67
- Desktop.ini
118
+ # TernJS port file
119
+ .tern-port
68
120
69
- # Recycle Bin used on file shares
70
- $RECYCLE.BIN /
121
+ # Stores VSCode versions used for testing VSCode extensions
122
+ .vscode-test
71
123
72
- # Windows Installer files
73
- * .cab
74
- * .msi
75
- * .msm
76
- * .msp
124
+ # yarn v2
125
+ .yarn /cache
126
+ .yarn /unplugged
127
+ .yarn /build-state.yml
128
+ .yarn /install-state.gz
129
+ .pnp. *
0 commit comments