-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathknip.ts
40 lines (38 loc) · 1.14 KB
/
knip.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: [
'index.tsx!',
'app.config.js!',
'metro.config.js!',
'.github/scripts/*.ts',
'./scripts/**/*.{js,ts}',
],
ignoreDependencies: [
'@actions/github',
'babel-preset-expo', // not listed in package.json so we use the version used by expo
// required by expo
'expo-build-properties',
'expo-dev-client',
'expo-font',
'expo-splash-screen',
'expo-status-bar',
// peer deps for @valora/eslint-config-typescript
'@typescript-eslint/eslint-plugin',
'eslint-plugin-import',
'eslint-plugin-jest',
'eslint-plugin-react',
'eslint-plugin-react-hooks',
'eslint-plugin-react-native',
// patches https://www.npmjs.com/package/patch-package#why-use-postinstall-postinstall-with-yarn
'postinstall-postinstall',
],
ignoreBinaries: [
'eas', // Expo Application Services
'licenses', // Yarn command
],
ignore: [
'.github/scripts/autoApprovePr.js', // Used by bump-app-version workflow
'.github/scripts/enableAutomergeOnPr.js', // Used by bump-app-version workflow
],
}
export default config