forked from can1357/oh-my-pi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.fallowrc.jsonc
More file actions
31 lines (31 loc) · 1.18 KB
/
Copy path.fallowrc.jsonc
File metadata and controls
31 lines (31 loc) · 1.18 KB
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
{
// Fallow configuration — see `bunx fallow config-schema` for the full schema.
//
// `entry` is critical: fallow's dead-code analyzer treats unlisted test files
// as unreachable, which means any helper imported only from other tests looks
// orphaned. Without this, `fallow fix` strips real `export` keywords from
// shared test utilities (e.g. `e2eApiKey`, `withEnv`, `waitForDelayOrAbort`),
// breaking the test build with `noUnusedVariables` lint errors.
"entry": [
"packages/*/test/**/*.{ts,tsx}",
"packages/*/test/**/*.test.{ts,tsx}",
"packages/*/bench/**/*.{ts,tsx}",
"packages/*/scripts/**/*.ts"
],
"ignoreDependencies": [
// Used via `node_modules/.bin/napi` from packages/natives/scripts/build-native.ts.
"@napi-rs/cli"
],
"duplicates": {
"ignore": [
// Generated from `packages/natives/scripts/native-index.template.js` via gen-enums.ts.
"packages/natives/native/index.js",
// Embedded HTML asset shipped as a static template, not a code module.
"packages/coding-agent/src/export/html/template.js",
// Generated/owned upstream — see packages/ai/scripts/generate-models.ts.
"packages/ai/src/models.json"
],
"ignoreImports": true
},
"rules": {}
}