Skip to content

Commit 2892b45

Browse files
committed
Add coverage-reports to eslint and tsc ignores
1 parent 93771f4 commit 2892b45

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: eslint.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import studio_eslint_config from '@studio/eslint-config';
33
export default [
44
...studio_eslint_config,
55
{
6-
ignores: ['bin/eslint.js', 'test/fixture/fail.js']
6+
ignores: ['bin/eslint.js', 'test/fixture/fail.js', 'coverage-reports']
77
}
88
];

Diff for: tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"esModuleInterop": true
88
},
99
"include": ["**/*.js"],
10-
"exclude": ["node_modules"]
10+
"exclude": ["node_modules", "coverage-reports"]
1111
}

0 commit comments

Comments
 (0)