Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/knip.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import type { KnipConfig } from "knip";

const config: KnipConfig = {
entry: ["src/action.ts", "src/worker.ts"],
project: ["src/", "test/"],
entry: ["src/action.ts"],
project: ["src/**/*.ts", "tests/**/*.ts"],
ignore: ["src/types/config.ts", "**/__mocks__/**", "**/__fixtures__/**"],
ignoreExportsUsedInFile: true,
// eslint can also be safely ignored as per the docs: https://knip.dev/guides/handling-issues#eslint--jest
ignoreDependencies: ["ts-node", "husky"],
ignoreDependencies: ["ts-node"],
eslint: true,
};

Expand Down
Loading
Loading