Skip to content

Commit fa1600b

Browse files
committed
Ignore test coverage output
1 parent 50dfdb8 commit fa1600b

File tree

1 file changed

+39
-5
lines changed

1 file changed

+39
-5
lines changed

.gitignore

Lines changed: 39 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
logs
33
*.log
44
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
57

68
# Runtime data
79
pids
@@ -14,22 +16,29 @@ lib-cov
1416

1517
# Coverage directory used by tools like istanbul
1618
coverage
19+
coverage.lcov
1720

1821
# nyc test coverage
1922
.nyc_output
2023

21-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
2225
.grunt
2326

27+
# Bower dependency directory (https://bower.io/)
28+
bower_components
29+
2430
# node-waf configuration
2531
.lock-wscript
2632

27-
# Compiled binary addons (http://nodejs.org/api/addons.html)
33+
# Compiled binary addons (https://nodejs.org/api/addons.html)
2834
build/Release
2935

3036
# Dependency directories
31-
node_modules
32-
jspm_packages
37+
node_modules/
38+
jspm_packages/
39+
40+
# TypeScript v1 declaration files
41+
typings/
3342

3443
# Optional npm cache directory
3544
.npm
@@ -44,4 +53,29 @@ jspm_packages
4453
*.tgz
4554

4655
# Yarn Integrity file
47-
.yarn-integrity
56+
.yarn-integrity
57+
58+
# dotenv environment variables file
59+
.env
60+
.env.test
61+
62+
# parcel-bundler cache (https://parceljs.org/)
63+
.cache
64+
65+
# next.js build output
66+
.next
67+
68+
# nuxt.js build output
69+
.nuxt
70+
71+
# vuepress build output
72+
.vuepress/dist
73+
74+
# Serverless directories
75+
.serverless/
76+
77+
# FuseBox cache
78+
.fusebox/
79+
80+
# DynamoDB Local files
81+
.dynamodb/

0 commit comments

Comments
 (0)