Skip to content

Commit

Permalink
Add support @typescript-eslint/parser@6
Browse files Browse the repository at this point in the history
Closes: #156
  • Loading branch information
MillerSvt committed Feb 9, 2024
1 parent 289f75b commit c409d77
Show file tree
Hide file tree
Showing 8 changed files with 431 additions and 19 deletions.
10 changes: 6 additions & 4 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
"use strict";

const expectedCoverage = process.version.startsWith("v14") ? 99 : 100;

module.exports = {
collectCoverageFrom: ["src/**/*.js"],
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100,
branches: expectedCoverage,
functions: expectedCoverage,
lines: expectedCoverage,
statements: expectedCoverage,
},
},
};
339 changes: 339 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c409d77

Please sign in to comment.