forked from vitalets/playwright-bdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
knip.config.ts
40 lines (38 loc) · 1002 Bytes
/
knip.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import type { KnipConfig } from 'knip';
const config: KnipConfig = {
entry: [
'src/cli/index.ts', // prettier-ignore
'src/cli/worker.ts',
'src/index.ts',
'src/decorators.ts',
'src/reporter/cucumber/index.ts',
],
project: ['src/**/*.ts'],
ignore: ['**/*.d.ts'],
ignoreBinaries: ['docsify'],
ignoreDependencies: [
// @cucumber/* dependencies are installed by @cucumber/cucumber
// todo: remove them from this list after removing @cucumber/cucumber dependency
'@cucumber/messages',
'@cucumber/cucumber-expressions',
'@cucumber/gherkin',
'@cucumber/gherkin-streams',
'@cucumber/gherkin-utils',
'@cucumber/tag-expressions',
'@cucumber/compatibility-kit',
'@cucumber/html-formatter',
'@cucumber/pretty-formatter',
'xmlbuilder',
'chalk',
'@types/react',
'@types/react-dom',
'react',
'react-dom',
'lint-staged',
'np',
'npm-run-all',
'publint',
'cross-env',
],
};
export default config;