Skip to content

Commit fac51d7

Browse files
committed
Exclude interfaces from coverage
1 parent 9f5ad9b commit fac51d7

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

eng/tools/eslint-plugin-tsv/src/eslint-plugin-tsv.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import parser from "yaml-eslint-parser";
2-
import { NamedESLint } from "./named-eslint.js";
2+
import { NamedESLint } from "./interfaces/named-eslint.js";
33
import kebabCaseOrg from "./rules/kebab-case-org.js";
44

55
const plugin: NamedESLint.Plugin = {

eng/tools/eslint-plugin-tsv/src/rules/kebab-case-org.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import path from "path";
2-
import { NamedRule } from "../named-eslint.js";
2+
import { NamedRule } from "../interfaces/named-eslint.js";
33

44
export const rule: NamedRule.RuleModule = {
55
name: "kebab-case-org",

eng/tools/eslint-plugin-tsv/vitest.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default defineConfig({
44
test: {
55
coverage: {
66
include: ["src"],
7-
exclude: ["src/named-eslint.ts"],
7+
exclude: ["src/interfaces"],
88
},
99
},
1010
});

0 commit comments

Comments
 (0)