-
Notifications
You must be signed in to change notification settings - Fork 54
/
knip.config.ts
77 lines (75 loc) · 2.38 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import type { KnipConfig } from 'knip';
const config: KnipConfig = {
ignoreBinaries: [
// These are installed, but don't have valid package.json bin fields for knip to detect them
'stylelint',
],
workspaces: {
'.': {
entry: ['scripts/**/*'],
ignoreBinaries: [
// false positives from yarn scripts in github actions
'build',
'global',
'start:test',
'codecept:*',
],
},
'packages/common': {
entry: ['src/**/*'],
},
'packages/ui-react': {
entry: ['src/**/*'],
ignoreDependencies: [
'sass', // Used in css
],
},
'platforms/web': {
ignoreDependencies: [
'@codeceptjs/allure-legacy',
'@codeceptjs/configure', // Used in e2e tests
'@babel/plugin-proposal-decorators', // Used to build with decorators for ioc resolution
'@babel/core', // Required peer dependency for babel plugins
'@types/luxon', // Used in tests
'babel-plugin-transform-typescript-metadata', // Used to build with decorators for ioc resolution
'core-js', // Conditionally imported at build time
'eslint-plugin-codeceptjs', // Used by apps/web/test-e2e/.eslintrc.cjs
'i18next-parser',
'luxon', // Used in tests
'playwright', // Used in test configs
'sharp', // Requirement for @vite-pwa/assets-generator
'tsconfig-paths', // Used for e2e test setup
'virtual:pwa-register', // Service Worker code is injected at build time
'virtual:polyfills', // Polyfills are conditionally injected
],
},
'configs/eslint-config-jwp': {
entry: ['*.*'],
ignoreDependencies: [
// Dynamically loaded in the eslint config
'@typescript-eslint/eslint-plugin',
'@typescript-eslint/parser',
'eslint-plugin-import',
'eslint-plugin-react',
'eslint-plugin-react-hooks',
],
},
'configs/postcss-config-jwp': {
ignoreDependencies: [
// Dynamically loaded in the postcss config
'postcss-scss',
],
},
'configs/stylelint-config-jwp': {
ignoreDependencies: [
// Dynamically loaded in the stylelint config
'stylelint',
'stylelint-order',
'stylelint-config-recommended-scss',
'stylelint-declaration-strict-value',
'stylelint-scss',
],
},
},
};
export default config;