Skip to content

Commit ad8ac6d

Browse files
committed
fix(gitignore): updated gitignore
1 parent bcdd4eb commit ad8ac6d

3 files changed

Lines changed: 21242 additions & 4 deletions

File tree

.github/scripts/check-coverage-thresholds.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ for (const key of ['branches', 'functions', 'lines', 'statements']) {
1414
if (current > threshold) {
1515
errors.push(
1616
`Coverage for ${key} (${current}%) is above the threshold (${threshold}%).\n\tPlease update the coverageThreshold.global.${key} in the jest.config.js to ${current}!`
17-
)
17+
);
1818
failed = true;
1919
}
2020
}
@@ -26,6 +26,6 @@ if (failed) {
2626
console.log('Please update the coverage thresholds in jest.config.js.');
2727
console.log('You will need to commit again once you have updated the jst.config.js file.');
2828
console.log('This is only necessary until we hit 100% coverage.\n\n');
29-
errors.forEach(err => console.error(`${err}\n`));
29+
errors.forEach((err) => console.error(`${err}\n`));
3030
process.exit(1);
31-
}
31+
}

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,3 @@ testem.log
4242
# System files
4343
.DS_Store
4444
Thumbs.db
45-
package-lock.json

0 commit comments

Comments
 (0)