fallow_config/config/mod.rs
1mod boundaries;
2mod duplicates_config;
3mod finding_ignore;
4mod flags;
5mod format;
6pub mod glob_validation;
7mod health;
8mod parsing;
9mod resolution;
10mod resolve;
11mod rules;
12mod used_class_members;
13
14#[expect(
15 clippy::redundant_pub_crate,
16 reason = "this module is glob re-exported from lib.rs, so `pub` would leak the helper into the public API; pub(crate) keeps it internal to the crate"
17)]
18pub(crate) use boundaries::wildcard_placement_error;
19pub use boundaries::{
20 AuthoredRule, BoundaryCallsConfig, BoundaryConfig, BoundaryCoverageConfig, BoundaryPreset,
21 BoundaryRule, BoundaryZone, ForbiddenCallRule, ForbiddenCallee, InvalidForbiddenCallee,
22 LogicalGroup, LogicalGroupStatus, RedundantRootPrefix, ResolvedBoundaryConfig,
23 ResolvedBoundaryCoverageConfig, ResolvedBoundaryRule, ResolvedZone, UnknownZoneRef,
24 ZoneReferenceKind, ZoneValidationError,
25};
26pub use duplicates_config::{
27 DetectionMode, DuplicatesConfig, NormalizationConfig, ResolvedNormalization,
28};
29pub use finding_ignore::FindingIgnoreMatcher;
30pub use flags::{FlagsConfig, SdkPattern};
31pub use format::OutputFormat;
32pub use health::{EmailMode, HealthConfig, HealthThresholdOverride, OwnershipConfig};
33pub use parsing::ConfigLoadOptions;
34pub use resolution::{
35 AnalysisSnapshot, CompiledIgnoreCatalogReferenceRule, CompiledIgnoreDependencyOverrideRule,
36 CompiledIgnoreExportRule, ConfigOverride, DEFAULT_MAX_FILE_SIZE_BYTES,
37 DEFAULT_MAX_FILE_SIZE_MB, IgnoreCatalogReferenceRule, IgnoreDependencyOverrideRule,
38 IgnoreExportRule, ResolvedConfig, ResolvedOverride, resolve_max_file_size_bytes,
39};
40pub use resolve::ResolveConfig;
41pub use rules::{
42 KNOWN_RULE_NAMES, PartialRulesConfig, RulesConfig, Severity, closest_known_rule_name,
43 default_severity_for_kind, is_opt_in_kind,
44};
45pub use used_class_members::{ScopedUsedClassMemberRule, UsedClassMemberRule};
46
47use schemars::JsonSchema;
48use serde::{Deserialize, Deserializer, Serialize};
49use std::ops::Not;
50use std::path::PathBuf;
51
52use crate::external_plugin::ExternalPluginDef;
53use crate::workspace::WorkspaceConfig;
54
55/// Value of the `ignoreExportsUsedInFile` config key: whether an export
56/// referenced elsewhere in its own file is suppressed from `unused-export`.
57#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
58#[serde(untagged, rename_all = "camelCase")]
59pub enum IgnoreExportsUsedInFileConfig {
60 /// Blanket toggle: `true` suppresses any export with a same-file use,
61 /// regardless of kind. The default is `false`.
62 Bool(bool),
63 /// Knip-parity object form restricting the suppression to type-only
64 /// exports.
65 ByKind(IgnoreExportsUsedInFileByKind),
66}
67
68impl Default for IgnoreExportsUsedInFileConfig {
69 fn default() -> Self {
70 Self::Bool(false)
71 }
72}
73
74impl From<bool> for IgnoreExportsUsedInFileConfig {
75 fn from(value: bool) -> Self {
76 Self::Bool(value)
77 }
78}
79
80impl From<IgnoreExportsUsedInFileByKind> for IgnoreExportsUsedInFileConfig {
81 fn from(value: IgnoreExportsUsedInFileByKind) -> Self {
82 Self::ByKind(value)
83 }
84}
85
86impl IgnoreExportsUsedInFileConfig {
87 /// Whether any form of the same-file-use suppression is active (the bool
88 /// form is `true`, or either by-kind field is set).
89 #[must_use]
90 pub const fn is_enabled(self) -> bool {
91 match self {
92 Self::Bool(value) => value,
93 Self::ByKind(kind) => kind.type_ || kind.interface,
94 }
95 }
96
97 /// Whether an export with a same-file use should be suppressed, given
98 /// whether fallow classified it as type-only. The bool form suppresses
99 /// regardless of kind; the by-kind form suppresses type-only exports only.
100 #[must_use]
101 pub const fn suppresses(self, is_type_only: bool) -> bool {
102 match self {
103 Self::Bool(value) => value,
104 Self::ByKind(kind) => is_type_only && (kind.type_ || kind.interface),
105 }
106 }
107}
108
109/// Object form of `ignoreExportsUsedInFile` (`{ "type": ..., "interface": ... }`),
110/// restricting the same-file-use suppression to type-only exports.
111#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
112#[serde(rename_all = "camelCase")]
113pub struct IgnoreExportsUsedInFileByKind {
114 /// When `true`, enables the same-file-use suppression for type-only exports (serialized as `type`; part of the object form of `ignoreExportsUsedInFile`). Because fallow groups type aliases and interfaces under one issue kind, setting either `type` or `interface` enables the identical type-only suppression, applied only to exports fallow classifies as type-only.
115 #[serde(default, rename = "type")]
116 pub type_: bool,
117 /// When `true`, enables the same-file-use suppression for type-only exports (part of the object form of `ignoreExportsUsedInFile`). Fallow does not distinguish interfaces from type aliases in this issue kind, so `interface` behaves identically to `type`: setting either one turns on the type-only same-file suppression.
118 #[serde(default)]
119 pub interface: bool,
120}
121
122/// Options for the `unused-component-props` rule.
123///
124/// Lets a project exempt component props whose local destructure binding name
125/// matches a regex from `unused-component-props`, honoring the
126/// "accepted-but-intentionally-unused" leading-underscore convention (Svelte 5
127/// `$props()`, React destructure) that mirrors TypeScript `noUnusedParameters`
128/// and ESLint `@typescript-eslint/no-unused-vars` `varsIgnorePattern` /
129/// `argsIgnorePattern`. Opt-in; an unset `ignorePattern` leaves the rule's
130/// behavior unchanged.
131#[derive(Debug, Default, Clone, Deserialize, Serialize, JsonSchema)]
132#[serde(default, deny_unknown_fields, rename_all = "camelCase")]
133pub struct UnusedComponentPropsConfig {
134 /// Regex matched against each declared prop's LOCAL destructure binding name
135 /// (e.g. `_stage` in `let { stage: _stage } = $props()`), which falls back
136 /// to the public prop name when there is no alias. A prop whose local name
137 /// matches is treated as intentionally unused and never reported as
138 /// `unused-component-props`. Matching is unanchored (substring), like
139 /// ESLint's `RegExp.test`, so anchor with `^_` to match a leading
140 /// underscore. Compiled and validated at config load (an invalid regex fails
141 /// load). Applies to Vue, Svelte, Astro, and React/Preact props.
142 #[serde(default, skip_serializing_if = "Option::is_none")]
143 pub ignore_pattern: Option<String>,
144}
145
146impl UnusedComponentPropsConfig {
147 /// True when no option is set, so serialization can omit the section.
148 #[must_use]
149 pub fn is_default(&self) -> bool {
150 self.ignore_pattern.is_none()
151 }
152}
153
154/// The `fix` config section: settings for `fallow fix` apply behavior.
155#[derive(Debug, Default, Clone, Deserialize, Serialize, JsonSchema)]
156#[serde(rename_all = "camelCase")]
157pub struct FixConfig {
158 /// Groups `fallow fix` settings for pnpm workspace catalog cleanup. Its only key, `deletePrecedingComments` (`auto` default, `always`, `never`), controls whether a comment block directly above a removed unused `pnpm-workspace.yaml` catalog entry is deleted with the entry.
159 #[serde(default)]
160 pub catalog: CatalogFixConfig,
161}
162
163/// The `fix.catalog` section: how `fallow fix` cleans up unused
164/// `pnpm-workspace.yaml` catalog entries.
165#[derive(Debug, Default, Clone, Deserialize, Serialize, JsonSchema)]
166#[serde(rename_all = "camelCase")]
167pub struct CatalogFixConfig {
168 /// Controls whether comment lines immediately above an unused `pnpm-workspace.yaml` catalog entry are removed when `fallow fix` deletes that entry: `auto` (default: delete only when the comment block is preceded by a blank line or sits directly under the parent catalog header, and never when it is a section banner like `# ====`), `always` (always remove the adjacent comment block), or `never` (leave all preceding comments). A `fallow-keep` marker anywhere in the block always preserves it regardless of this setting. Set `never` for teams that keep hand-authored notes above catalog pins.
169 #[serde(default)]
170 pub delete_preceding_comments: CatalogPrecedingCommentPolicy,
171}
172
173/// Value of `fix.catalog.deletePrecedingComments`: what happens to comment
174/// lines directly above a catalog entry that `fallow fix` removes. A
175/// `fallow-keep` marker in the block always preserves it regardless of policy.
176#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
177#[serde(rename_all = "lowercase")]
178pub enum CatalogPrecedingCommentPolicy {
179 /// Delete the adjacent comment block only when heuristics attribute it to
180 /// the entry (preceded by a blank line or directly under the catalog
181 /// header) and it is not a section banner. The default.
182 #[default]
183 Auto,
184 /// Always delete the adjacent comment block with the entry.
185 Always,
186 /// Never delete preceding comments.
187 Never,
188}
189
190/// Completeness policy for opt-in TypeScript semantic analysis.
191#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
192#[serde(rename_all = "kebab-case")]
193pub enum TypeAwareRequire {
194 /// Keep conservative findings and report semantic gaps without failing.
195 #[default]
196 BestEffort,
197 /// Fail the quality gate when any requested semantic query is incomplete.
198 Complete,
199}
200
201impl From<TypeAwareRequire> for fallow_types::semantic::SemanticCompletenessRequirement {
202 fn from(value: TypeAwareRequire) -> Self {
203 match value {
204 TypeAwareRequire::BestEffort => Self::BestEffort,
205 TypeAwareRequire::Complete => Self::Complete,
206 }
207 }
208}
209
210/// Shared opt-in configuration for TypeScript semantic analysis.
211#[derive(Debug, Default, Clone, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
212#[serde(deny_unknown_fields, rename_all = "camelCase")]
213pub struct TypeAwareConfig {
214 /// Enable the optional TypeScript semantic pass. Disabled by default.
215 #[serde(default)]
216 pub enabled: bool,
217 /// TypeScript project config paths, resolved relative to the project root.
218 #[serde(default, skip_serializing_if = "Vec::is_empty")]
219 pub projects: Vec<String>,
220 /// Decide whether partial semantic analysis is advisory or gating.
221 #[serde(default, skip_serializing_if = "is_default_type_aware_require")]
222 pub require: TypeAwareRequire,
223}
224
225#[expect(
226 clippy::trivially_copy_pass_by_ref,
227 reason = "serde skip_serializing_if callbacks receive field values by reference"
228)]
229fn is_default_type_aware_require(value: &TypeAwareRequire) -> bool {
230 matches!(value, TypeAwareRequire::BestEffort)
231}
232
233impl TypeAwareConfig {
234 /// True when the section equals its default (disabled, no projects,
235 /// best-effort), so serialization can omit it.
236 #[must_use]
237 pub fn is_default(&self) -> bool {
238 !self.enabled && self.projects.is_empty() && self.require == TypeAwareRequire::BestEffort
239 }
240}
241
242/// The user-facing fallow configuration as authored in `.fallowrc.json` /
243/// `.fallowrc.jsonc` / `fallow.toml` (or the `fallow` key of `package.json`).
244///
245/// Every field documents its serialized meaning, default, and precedence
246/// against CLI flags and environment variables where they exist.
247/// `FallowConfig::resolve` compiles the loaded config (globs, regexes,
248/// plugin and rule-pack discovery) into a [`ResolvedConfig`] for analysis.
249/// Unknown keys are rejected at load so typos fail loud.
250#[derive(Debug, Default, Deserialize, Serialize, JsonSchema)]
251#[serde(deny_unknown_fields, rename_all = "camelCase")]
252pub struct FallowConfig {
253 /// A string pointing at fallow's JSON Schema URL, used only by editors for autocomplete and validation of the config file; it has no effect on analysis and is stripped before serialization (serde skip_serializing, writeOnly in the schema). Set it to `./node_modules/fallow/schema.json` for npm installs (version-aligned, offline, avoids VS Code's untrusted-remote-schema prompt), or `https://raw.githubusercontent.com/fallow-rs/fallow/main/schema.json` for non-npm installs; any other value is ignored by fallow.
254 #[serde(rename = "$schema", default, skip_serializing)]
255 pub schema: Option<String>,
256
257 /// An ordered array of parent config sources to inherit before this file's own keys apply; each entry is a file-relative path, an `npm:<package>` specifier, or an `https://` URL (`http://` is rejected), deep-merged in order so objects merge field-by-field while arrays and scalars in this file replace the parent's, with cycle and depth guards. Set it to share a base config across a monorepo or team; it is consumed at load and stripped before serialization (serde skip_serializing).
258 #[serde(default, skip_serializing)]
259 pub extends: Vec<String>,
260
261 /// An array of project-root-relative glob patterns whose matching files are seeded as manual entry points, on top of the framework and package.json entries fallow discovers automatically, so their transitive imports are not reported as unused. Set it (e.g. `["src/main.ts"]`) when a file is a real runtime root that no plugin or manifest declares; patterns are validated at load and matched against discovered files.
262 #[serde(default)]
263 pub entry: Vec<String>,
264
265 /// An array of project-root-relative glob patterns for files to exclude from analysis entirely; entries are unioned with fallow's built-in defaults (**/node_modules/**, **/dist/**, build/**, **/.git/**, **/coverage/**, **/*.min.js, **/*.min.mjs, **/*.min.cjs, **/*.bundle.js), so custom globs add to rather than replace them. Set it (e.g. `["generated/**"]`) to drop generated or vendored trees from every detector; patterns are validated at load.
266 #[serde(default)]
267 pub ignore_patterns: Vec<String>,
268
269 /// An array of project-root-relative glob patterns whose source-owned dead-code findings are hidden after analysis without excluding matching files from discovery, parsing, resolution, or the module graph. Use `/` as the path separator on every platform. Positive patterns select paths to hide; `!`-prefixed patterns keep matching paths reportable, and a negated-only array reports only those exception paths. A finding with multiple source owners is hidden only when every owner matches, so a cycle, duplicate-export group, or unlisted dependency with any reportable location remains visible. Architecture, policy, suppression-hygiene, and framework-correctness findings remain visible even when a referenced path matches, as do manifest-owned findings that no source file owns: unused dependencies, unused dev and optional dependencies, catalog entries, and dependency overrides. Use `ignorePatterns` instead when a generated or vendored file must not be analyzed at all.
270 #[serde(default, skip_serializing_if = "Vec::is_empty")]
271 pub ignore_findings: Vec<String>,
272
273 /// Declares inline external framework plugins as data (array of plugin objects), each with `name` plus optional `enablers` (package names that activate it) or richer `detection` (dependency/file-existence/`all`/`any` checks, taking priority over `enablers`), `entryPoints` (+ `entryPointRole` runtime/support/test), `configPatterns`, `alwaysUsed`, `toolingDependencies`, `usedExports` (`{ pattern, exports }`), and `usedClassMembers`. Set it to keep a custom or in-house framework's entry points, config files, and conventions reachable without a Rust plugin; these definitions are appended to plugins discovered via `plugins`, `.fallow/plugins/`, and root `fallow-plugin-*` files (first occurrence of a name wins), and cannot do AST-based config parsing.
274 #[serde(default)]
275 pub framework: Vec<ExternalPluginDef>,
276
277 /// Monorepo workspace configuration whose sole sub-key patterns (array of globs) adds workspace package roots beyond those discovered from package.json workspaces, pnpm-workspace.yaml, and tsconfig references. Optional and absent by default (discovery uses the manifests alone); set it only when workspaces live in directories the standard manifests do not declare.
278 #[serde(default)]
279 pub workspaces: Option<WorkspaceConfig>,
280
281 /// A list of exact package names excluded from BOTH unused-dependency and unlisted-dependency detection, so a runtime-provided or otherwise-untracked package (e.g. `bun:sqlite`, a peer supplied at deploy time) is never flagged as unused when declared nor as unlisted when imported. Set it for packages fallow cannot observe being used and cannot observe being declared; matching is exact string equality against the package name, not a glob.
282 #[serde(default)]
283 pub ignore_dependencies: Vec<String>,
284
285 /// A list of glob patterns that suppress only `unresolved-import` findings whose raw import specifier matches; it does not change dependency usage accounting or resolver behavior. Patterns match the import string as written (not a filesystem path), so list both `@example/icons` and `@example/icons/**` to cover a bare package and its subpaths; parent-relative generated specifiers like `../generated/**` are valid, and broad values like `**` can hide real missing modules.
286 #[serde(default)]
287 pub ignore_unresolved_imports: Vec<String>,
288
289 /// A list of per-file rules that exempt named exports from `unused-export` and from duplicate-exports grouping for files matching a glob. Each entry is `{ file: <glob>, exports: [<name>, ...] }` where `exports: ["*"]` exempts every export in the file and a name list exempts only those names; built for component-library barrels (shadcn/Radix/bits-ui `index.ts`) that intentionally re-export the same short names across many files.
290 #[serde(default)]
291 pub ignore_exports: Vec<IgnoreExportRule>,
292
293 /// A list of rules that suppress `unresolved-catalog-reference` findings (a workspace `package.json` referencing a `catalog:` or `catalog:<name>` that the catalog does not declare); config-only because `package.json` has no inline-suppression comment surface. Each entry needs a `package` (exact match) plus optional `catalog` (exact catalog-name match) and `consumer` (glob on the consuming package.json path); use it for staged catalog migrations where the catalog edit lands in a separate change.
294 #[serde(default, skip_serializing_if = "Vec::is_empty")]
295 pub ignore_catalog_references: Vec<IgnoreCatalogReferenceRule>,
296
297 /// A list of rules that suppress `unused-dependency-override` and `misconfigured-dependency-override` findings for pnpm `overrides` entries; config-only, matched against the override's target package. Each entry needs a `package` (exact match) plus an optional `source` to scope the suppression to `"pnpm-workspace.yaml"` or `"package.json"`.
298 #[serde(default, skip_serializing_if = "Vec::is_empty")]
299 pub ignore_dependency_overrides: Vec<IgnoreDependencyOverrideRule>,
300
301 /// Controls whether an export referenced only by another symbol in the same file is treated as used (suppressed from `unused-export`) until it becomes completely unreferenced; references inside an export specifier itself (`export { foo }`, `export default foo`) do not count as same-file uses. Accepts `true`/`false` (default `false`, suppress nothing) or the knip-parity object `{ "type": true, "interface": true }`, which restricts the suppression to type-only exports; fallow groups type aliases and interfaces under one kind, so both object fields behave identically.
302 #[serde(default)]
303 pub ignore_exports_used_in_file: IgnoreExportsUsedInFileConfig,
304
305 /// A list of decorator names that no longer grant a class member automatic exemption from `unused-class-member`: a member whose every decorator is in this set is checked normally, while a member carrying any decorator NOT listed here stays skipped (frameworks consume decorated members reflectively). Dotted entries match the full decorator path (`ns.foo`) and bare entries match the leftmost segment (so `"decorators"` collapses every `@decorators.*`); both `"@step"` and `"step"` are accepted (leading `@` stripped), and an unmatched entry emits a one-time warning.
306 #[serde(default, skip_serializing_if = "Vec::is_empty")]
307 pub ignore_decorators: Vec<String>,
308
309 /// A list of class-member names or glob patterns treated as framework-used, so a method a library invokes reflectively (ag-Grid `agInit`/`refresh`, Web Component `connectedCallback`) is not reported as `unused-class-member`; it applies to class members only, not enum members. Each entry is either a plain string/glob (`"agInit"`, `"enter*"`, `"*"`) applied to every class, or a scoped object `{ extends?, implements?, members: [...] }` that applies only when the class matches that heritage clause (a scoped rule requires `extends` or `implements`); patterns matching zero members warn once.
310 #[serde(default)]
311 pub used_class_members: Vec<UsedClassMemberRule>,
312
313 /// Configures clone detection: `enabled` (default true), `mode` (`strict`, `mild` default, `weak`, `semantic`, from least to most identifier/literal blinding; `strict` and `mild` are equivalent under fallow's AST tokenizer, `weak` blinds string literals, `semantic` blinds all identifiers and literals for Type-2 renamed-variable detection), `near` (false, add bounded function-scoped near-miss detection), `minTokens` (50), `minLines` (5), `minOccurrences` (integer >= 2, deserialization fails below 2), `threshold` (max duplication percentage, 0 = no limit), `ignore` globs, `ignoredClones` (reviewed clone keys to hide until their content or occurrence count changes), `ignoreDefaults` (true, merge built-in generated-file ignores), `skipLocal` (only report cross-directory clones), `crossLanguage` (strip TS type annotations to match .ts against .js), `ignoreImports` (true, strip ES import/re-export/top-level require wiring from the token stream), and `normalization` (per-flag `ignoreIdentifiers`/`ignoreStringValues`/`ignoreNumericValues` overrides on top of `mode`). Raise `minOccurrences` to focus on widespread copy-paste, enable `near` for gapped structural clones, or set `mode` to `semantic` to catch renamed-variable exact clones.
314 #[serde(default)]
315 pub duplicates: DuplicatesConfig,
316
317 /// Sets complexity and health thresholds for `fallow health` (also applied in combined `fallow` and `fallow audit`): `maxCyclomatic` (20), `maxCognitive` (15), `maxCrap` (30.0, findings at or above this are reported), `crapRefactorBand` (5, cyclomatic band below `maxCyclomatic` where a secondary refactor action is added), `maxUnitSize` (max function lines before a large-function finding, 60), `coverage`/`coverageRoot` (Istanbul coverage path and path-prefix strip for accurate CRAP), `ignore` globs (remove files from findings AND the health score), `thresholdOverrides` (per-file/per-function ceilings via `files`/`functions`/`maxCyclomatic`/`maxCognitive`/`maxCrap`/`maxUnitSize`/`reason`), `ownership` (`botPatterns` and `emailMode` for `--ownership`), and `suggestInlineSuppression` (true, emit `suppress-line` action hints in JSON). Raise thresholds to relax which functions are flagged, wire `coverage` for real CRAP scores, or exempt generated/test files via `ignore` (drops them from the score too) or `thresholdOverrides` (keeps them visible under a higher ceiling). The four `max*` thresholds govern findings only and never move `health_score`: its penalties use fixed calibration so grades stay comparable across projects, and `ignore` is the lever that removes files from the score.
318 #[serde(default)]
319 pub health: HealthConfig,
320
321 /// Opts into TypeScript semantic analysis for project-wide symbol use,
322 /// provenance, API surface, symbol impact, and public-signature coupling.
323 /// This does not surface compiler diagnostics or typed lint rules.
324 #[serde(default, skip_serializing_if = "TypeAwareConfig::is_default")]
325 pub type_aware: TypeAwareConfig,
326
327 /// Sets per-issue-type severity, keyed by kebab-case rule id: `error` reports and fails CI (non-zero exit), `warn` reports without failing, `off` disables detection and reporting entirely (e.g. `{ "unused-files": "error", "unused-exports": "warn", "private-type-leaks": "off" }`). Set a rule `off` to silence it, `warn` to demote below CI gating, or `error` to promote a warn/off-default rule to gating; most rules default to `error`, dev/optional-dependency and component/store/inject/CSS/catalog rules default to `warn`, and opt-in rules (`private-type-leaks`, `security-*`, `prop-drilling`, `thin-wrapper`, `duplicate-prop-shape`, `coverage-gaps`, `feature-flags`, `require-suppression-reason`) default to `off`. Singular aliases (`unused-file`) and `warning`/`none` severity spellings are accepted.
328 #[serde(default)]
329 pub rules: RulesConfig,
330
331 #[serde(
332 default,
333 skip_serializing_if = "UnusedComponentPropsConfig::is_default"
334 )]
335 /// Options for the `unused-component-props` rule, currently only `ignorePattern`: a regex matched against each declared prop's local destructure binding name (falling back to the public prop name when unaliased) to exempt intentionally-unused props such as the leading-underscore convention. Set `{ "ignorePattern": "^_" }` to skip props like `_stage`; matching is unanchored (substring, like ESLint's `RegExp.test`) so anchor with `^`, the pattern is validated at config load (invalid regex fails load), and it applies to Vue, Svelte, Astro, and React/Preact props (unset leaves the rule unchanged).
336 pub unused_component_props: UnusedComponentPropsConfig,
337
338 /// Configures architecture boundary enforcement: which source directories belong to which named zone and which zones may import which others, reported as boundary-violation, boundary-coverage-violation, and boundary-call-violation findings (severity via rules.boundary-violation, default error). Set to enforce a layered/module architecture; the object holds `preset` (one of layered, hexagonal, feature-sliced, bulletproof, whose default zones/rules are merged in with the user-declared zones/rules taking precedence), `zones` (each with `name`, `patterns`, `autoDiscover`, optional `root`), `rules` (each with `from`, `allow`, `allowTypeOnly` target-zone lists), `coverage` (`requireAllFiles` plus `allowUnmatched` globs for files matching no zone), and `calls` (a `forbidden` list of `{from, callee}` banned-call rules per zone).
339 #[serde(default)]
340 pub boundaries: BoundaryConfig,
341
342 /// Configures feature-flag detection: `sdkPatterns` (custom flag-evaluating call signatures, each `{ function, nameArg (zero-based arg index of the flag name, default 0), provider? }`, merged with built-ins for LaunchDarkly, Statsig, Unleash, GrowthBook, Split, PostHog, Vercel Flags, ConfigCat, Flagsmith, Optimizely, and Eppo), `envPrefixes` (env-var prefixes marking `process.env.*` accesses as flags, merged with built-ins), and `configObjectHeuristics` (default false; when true, property accesses on objects whose name contains `feature`/`flag`/`toggle` are reported as low-confidence flags). Set `sdkPatterns`/`envPrefixes` to teach fallow a proprietary flag SDK or naming convention, or enable `configObjectHeuristics` for projects that read flags off config objects (higher false-positive rate). Feature-flag findings surface only when the `feature-flags` rule is enabled (default `off`).
343 #[serde(default)]
344 pub flags: FlagsConfig,
345
346 /// Scopes the opt-in `fallow security` catalogue: which candidate categories run and which extra local identifiers count as HTTP request objects. Set when tuning security-candidate detection; the object holds `categories` (an object with `include` and/or `exclude` string arrays of catalogue category ids, where `include` restricts to a whitelist and `exclude` removes from the admitted set, both unset admits all ordinary categories) and `requestReceivers` (a string array of project-local names that extend, not replace, the built-in `*.query`/`*.params`/`*.body` source-receiver allowlist). The `hardcoded-secret` and `secret-to-network` categories are include-required: they fire only when explicitly listed in `categories.include`, even when no include list is otherwise set. The valid category ids are enumerated (with title, CWE, and include-required flag) in the `security_categories` block of `fallow schema`, and also listed by `fallow security --help`; they are not in this config-schema.
347 #[serde(default)]
348 pub security: SecurityConfig,
349
350 /// Configures `fallow fix` behavior. Currently holds one nested section, `catalog` (a `CatalogFixConfig`), whose only key `deletePrecedingComments` (`auto` default, `always`, `never`) governs whether comment lines directly above a removed unused `pnpm-workspace.yaml` catalog entry are deleted with it.
351 #[serde(default)]
352 pub fix: FixConfig,
353
354 /// Configures the module resolver. Its one key `conditions` is a list of additional package.json `exports`/`imports` condition names to honor, matched at higher priority than fallow's built-ins (`development`, `import`, `require`, `default`, `types`, `node`, plus `react-native`/`browser` when the React Native or Expo plugin is active). Set it when a package's `exports` map has custom branches (e.g. `worker`, `deno`, `edge`) that fallow should follow instead of the default branch.
355 #[serde(default)]
356 pub resolve: ResolveConfig,
357
358 /// Enables production mode, which excludes test/spec/story/dev files from discovery and forces `unused-dev-dependencies` and `unused-optional-dependencies` to `off`. Accepts a boolean (default false) applied to all analyses, or a per-analysis object `{ deadCode?, health?, dupes? }` (each boolean, default false) that scopes production mode to individual analyses in combined `fallow` and `fallow audit`. Set it to analyze only shipped code; the `--production`/`--no-production` and `--production-{dead-code,health,dupes}` CLI flags and `FALLOW_PRODUCTION*` env vars override this value (CLI flags win, then per-analysis env, then global env, then config).
359 #[serde(default)]
360 pub production: ProductionConfig,
361
362 /// List of paths (relative to the project root, must resolve within it) to external plugin definition files or directories in JSONC/JSON/TOML, loaded in addition to the auto-discovered `.fallow/plugins/` directory and root `fallow-plugin-*` files. Set it to load plugin definitions kept outside those default locations; a path resolving outside the project root is skipped with a `tracing::warn`, and paths listed here are searched before the auto-discovered locations (first occurrence of a plugin name wins).
363 #[serde(default)]
364 pub plugins: Vec<String>,
365
366 /// Paths to declarative rule-pack files (JSON or JSONC), relative to the
367 /// project root. Each pack declares `banned-call`, `banned-import`, or
368 /// `banned-effect` rules that report as `policy-violation` findings. Packs
369 /// are pure data: no project code is executed. Invalid or missing packs
370 /// fail config load.
371 #[serde(default, skip_serializing_if = "Vec::is_empty")]
372 pub rule_packs: Vec<String>,
373
374 /// An array of project-root-relative glob patterns for files loaded at runtime by a mechanism the static graph cannot see (dynamic path resolution, config-driven loading); matching files are seeded as entry points so they and their imports stay reachable. Empty by default; set it (e.g. `["plugins/**/*.ts", "locales/**/*.json"]`) for plugin or locale trees pulled in dynamically.
375 #[serde(default)]
376 pub dynamically_loaded: Vec<String>,
377
378 /// An ordered list of per-file rule-severity overrides: each entry re-severities specific analysis rules for files its globs match, layered on top of the top-level `rules` defaults. Set to relax or tighten rules for a subset of paths (e.g. downgrade unused-exports to warn under a generated directory); each entry has `files` (glob-pattern array) and `rules` (a partial per-rule severity map of error/warn/off). Entries apply in list order and a file matched by several entries takes every matching entry's overrides (later entries win on conflict); inter-file rules (duplicate-exports, circular-dependencies, re-export-cycle) have no effect in an override (fallow warns during analysis and points to the right mechanism: top-level `ignoreExports` for duplicate-exports, a file-level `// fallow-ignore-file` comment for the others).
379 #[serde(default)]
380 pub overrides: Vec<ConfigOverride>,
381
382 /// A project-root-relative path to a CODEOWNERS file, used by fallow health --hotspots --ownership to attribute declared owners and compute unowned/drifting ownership state; setting it overrides the default probe order (CODEOWNERS, .github/CODEOWNERS, .gitlab/CODEOWNERS, docs/CODEOWNERS). String, defaults to null (auto-probe the standard locations); set it only when the CODEOWNERS file lives at a non-standard location.
383 #[serde(default, skip_serializing_if = "Option::is_none")]
384 pub codeowners: Option<String>,
385
386 /// An array of internal workspace package names (or globs matched against workspace package names) whose public API is intentionally consumed outside the analyzed graph; their entry points and re-export surface become reachability roots, so their exported files, exports, and class members are not reported as unused. Set it (e.g. `["@myorg/shared-lib", "@myorg/*"]`) for library packages in a monorepo that ship an API to external consumers; only meaningful when workspaces are present (an empty list or no workspaces is a no-op).
387 #[serde(default)]
388 pub public_packages: Vec<String>,
389
390 /// Holds a saved issue-count baseline that the `--fail-on-regression` gate compares the current run against, failing only when counts grow beyond tolerance relative to the baseline. Usually written by `--save-baseline` rather than hand-authored; the object has a single `baseline` sub-key holding per-issue-type counts (total_issues plus per-kind fields like unused_exports, boundary_violations, policy_violations, each defaulting to 0). Absent means no baseline is embedded in config.
391 #[serde(default, skip_serializing_if = "Option::is_none")]
392 pub regression: Option<RegressionConfig>,
393
394 /// Sets in-repo defaults for `fallow audit` (the changed-files quality gate) so CLI flags need not repeat per run. Set to pin audit behavior; the object holds `gate` (`new-only` or `all`, which findings drive the verdict), `css`/`cssDeep` (booleans toggling styling analysis and the project-wide CSS reachability pass), `deadCodeBaseline`/`healthBaseline`/`dupesBaseline` (per-sub-analysis baseline file paths), and `cacheMaxAgeDays` (GC window in days for the reusable base-snapshot worktree cache). The matching CLI flag overrides each field.
395 #[serde(default, skip_serializing_if = "AuditConfig::is_empty")]
396 pub audit: AuditConfig,
397
398 /// When true, restricts this config's extends entries to file-relative paths that resolve inside the config file's own directory; any https:// URL, npm: package, or relative path escaping that directory is rejected at load with a hard error. Boolean, defaults to false (URL, npm, and any-relative extends are permitted); set it to true to harden a config against pulling in remote or out-of-tree bases.
399 #[serde(default)]
400 pub sealed: bool,
401
402 /// When true, exports of entry-point files are subject to unused-export detection instead of being auto-credited as used, so a typo'd or stray export in a framework route or package entry (e.g. meatdata for metadata) is flagged; plugin used_exports allowlists are still honored. Boolean, defaults to false; the CLI flag --include-entry-exports applies the same behavior for one run.
403 #[serde(default)]
404 pub include_entry_exports: bool,
405
406 /// When true, drops Nuxt convention-based entry-pattern fallbacks: component fallbacks are dropped unless nuxt.config declares components:, and composable/util fallbacks are dropped unless it declares imports:, so genuinely-unreferenced convention files surface as unused-file. Boolean, defaults to false; set it for a Nuxt project that has explicitly configured its auto-import directories. Synthesis of auto-import graph edges (resolving `<Card />` or `useUserStore()` to their convention files) happens regardless of this flag.
407 #[serde(default)]
408 pub auto_imports: bool,
409
410 /// Overrides the location and size ceiling of fallow's persistent extraction cache (default `.fallow/cache.bin` under the project root). Set to relocate the cache or cap its footprint; the object holds `dir` (cache directory, relative paths resolve from the project root) and `maxSizeMb` (extraction-cache size limit in megabytes). The `FALLOW_CACHE_MAX_SIZE` environment variable overrides `maxSizeMb`.
411 #[serde(default, skip_serializing_if = "CacheConfig::is_default")]
412 pub cache: CacheConfig,
413}
414
415/// Scopes `fallow security` catalogue behavior. An absent category block admits
416/// every catalogue category. `hardcoded-secret` is include-required and only
417/// runs when explicitly listed in `security.categories.include`.
418#[derive(Debug, Default, Clone, Deserialize, Serialize, JsonSchema)]
419#[serde(deny_unknown_fields, rename_all = "camelCase")]
420pub struct SecurityConfig {
421 /// Include/exclude filter over category ids (e.g. `dangerous-html`).
422 #[serde(default, skip_serializing_if = "Option::is_none")]
423 pub categories: Option<SecurityCategories>,
424 /// Additional project-local names for HTTP request objects. These names
425 /// extend the built-in receiver allowlist for `*.query`, `*.params`, and
426 /// `*.body` source patterns. They do not replace the built-ins and do not
427 /// gate `*.searchParams`, which intentionally stays ungated.
428 #[serde(default, skip_serializing_if = "Vec::is_empty")]
429 pub request_receivers: Vec<String>,
430}
431
432impl SecurityConfig {
433 /// The configured `requestReceivers` trimmed, lowercased, and deduplicated
434 /// in first-seen order, with empty entries dropped; the form the matcher
435 /// compares receiver names against (matching is case-insensitive).
436 #[must_use]
437 pub fn normalized_request_receivers(&self) -> Vec<String> {
438 let mut receivers = Vec::new();
439 for receiver in &self.request_receivers {
440 let normalized = receiver.trim().to_ascii_lowercase();
441 if !normalized.is_empty() && !receivers.contains(&normalized) {
442 receivers.push(normalized);
443 }
444 }
445 receivers
446 }
447
448 /// False when any configured receiver is empty or whitespace-only, which
449 /// config validation reports as an error instead of silently dropping it.
450 #[must_use]
451 pub fn request_receivers_are_valid(&self) -> bool {
452 self.request_receivers
453 .iter()
454 .all(|receiver| !receiver.trim().is_empty())
455 }
456}
457
458/// Include/exclude lists scoping the active security categories. When `include`
459/// is set, only those categories are active; `exclude` removes categories from
460/// the admitted set. Both unset admits catalogue categories. `hardcoded-secret`
461/// still requires explicit inclusion.
462#[derive(Debug, Default, Clone, Deserialize, Serialize, JsonSchema)]
463#[serde(deny_unknown_fields, rename_all = "camelCase")]
464pub struct SecurityCategories {
465 /// Catalogue category ids to admit. When set, all others are excluded.
466 #[serde(default, skip_serializing_if = "Option::is_none")]
467 pub include: Option<Vec<String>>,
468 /// Catalogue category ids to remove from the admitted set.
469 #[serde(default, skip_serializing_if = "Option::is_none")]
470 pub exclude: Option<Vec<String>>,
471}
472
473/// The `cache` config section: location and size ceiling of fallow's
474/// persistent caches (default directory `<root>/.fallow`).
475#[derive(Debug, Default, Clone, Deserialize, Serialize, JsonSchema)]
476#[serde(deny_unknown_fields, rename_all = "camelCase")]
477pub struct CacheConfig {
478 /// Directory for fallow's persistent analysis cache. Relative paths resolve
479 /// from the project root.
480 #[serde(default, skip_serializing_if = "Option::is_none")]
481 pub dir: Option<PathBuf>,
482 /// Maximum size of the persistent extraction cache, in megabytes.
483 #[serde(default, skip_serializing_if = "Option::is_none")]
484 pub max_size_mb: Option<u32>,
485}
486
487impl CacheConfig {
488 /// True when neither field is set, so serialization can omit the section.
489 #[must_use]
490 pub fn is_default(&self) -> bool {
491 self.dir.is_none() && self.max_size_mb.is_none()
492 }
493}
494
495/// The analysis families production mode can be scoped to independently via
496/// the object form of the `production` config key.
497#[derive(Debug, Clone, Copy, PartialEq, Eq)]
498pub enum ProductionAnalysis {
499 /// Unused files/exports/dependencies detection.
500 DeadCode,
501 /// Complexity and health scoring.
502 Health,
503 /// Clone detection.
504 Dupes,
505}
506
507/// Value of the `production` config key: excludes test/spec/story/dev files
508/// from discovery, either globally or per analysis family.
509#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, JsonSchema)]
510#[serde(untagged)]
511pub enum ProductionConfig {
512 /// Boolean form applying to every analysis. The default is `false`.
513 Global(bool),
514 /// Object form (`{ deadCode?, health?, dupes? }`) scoping production mode
515 /// per analysis family.
516 PerAnalysis(PerAnalysisProductionConfig),
517}
518
519impl<'de> Deserialize<'de> for ProductionConfig {
520 fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
521 where
522 D: Deserializer<'de>,
523 {
524 struct ProductionConfigVisitor;
525
526 impl<'de> serde::de::Visitor<'de> for ProductionConfigVisitor {
527 type Value = ProductionConfig;
528
529 fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
530 formatter.write_str("a boolean or per-analysis production config object")
531 }
532
533 fn visit_bool<E>(self, value: bool) -> Result<Self::Value, E>
534 where
535 E: serde::de::Error,
536 {
537 Ok(ProductionConfig::Global(value))
538 }
539
540 fn visit_map<A>(self, map: A) -> Result<Self::Value, A::Error>
541 where
542 A: serde::de::MapAccess<'de>,
543 {
544 PerAnalysisProductionConfig::deserialize(
545 serde::de::value::MapAccessDeserializer::new(map),
546 )
547 .map(ProductionConfig::PerAnalysis)
548 }
549 }
550
551 deserializer.deserialize_any(ProductionConfigVisitor)
552 }
553}
554
555impl Default for ProductionConfig {
556 fn default() -> Self {
557 Self::Global(false)
558 }
559}
560
561impl From<bool> for ProductionConfig {
562 fn from(value: bool) -> Self {
563 Self::Global(value)
564 }
565}
566
567impl Not for ProductionConfig {
568 type Output = bool;
569
570 fn not(self) -> Self::Output {
571 !self.any_enabled()
572 }
573}
574
575impl ProductionConfig {
576 /// Whether production mode applies to `analysis` under this config.
577 #[must_use]
578 pub const fn for_analysis(self, analysis: ProductionAnalysis) -> bool {
579 match self {
580 Self::Global(value) => value,
581 Self::PerAnalysis(config) => match analysis {
582 ProductionAnalysis::DeadCode => config.dead_code,
583 ProductionAnalysis::Health => config.health,
584 ProductionAnalysis::Dupes => config.dupes,
585 },
586 }
587 }
588
589 /// The boolean form's value; `false` for the per-analysis form, which has
590 /// no global toggle.
591 #[must_use]
592 pub const fn global(self) -> bool {
593 match self {
594 Self::Global(value) => value,
595 Self::PerAnalysis(_) => false,
596 }
597 }
598
599 /// Whether production mode is enabled for at least one analysis family.
600 #[must_use]
601 pub const fn any_enabled(self) -> bool {
602 match self {
603 Self::Global(value) => value,
604 Self::PerAnalysis(config) => config.dead_code || config.health || config.dupes,
605 }
606 }
607}
608
609/// Object form of the `production` config key, scoping production mode to
610/// individual analysis families in combined `fallow` and `fallow audit`.
611#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
612#[serde(default, deny_unknown_fields, rename_all = "camelCase")]
613pub struct PerAnalysisProductionConfig {
614 /// When `production` is a per-analysis object, enables production mode for dead-code analysis only (boolean, default false): unused-files/exports/dependencies detection excludes test/spec/story/dev files and forces `unused-dev-dependencies`/`unused-optional-dependencies` to `off`, while health and dupes stay on the full tree. Set it to scope production analysis to dead code independently.
615 pub dead_code: bool,
616 /// When `production` is a per-analysis object, enables production mode for the health/complexity analysis only (boolean, default false), so `fallow health` in combined `fallow` and `fallow audit` scores only shipped code (test/spec/story/dev files excluded) while dead-code and dupes stay on the full tree. Set it to scope production analysis to health independently.
617 pub health: bool,
618 /// When `production` is a per-analysis object, enables production mode for duplication analysis only (boolean, default false), so clone detection runs on shipped code only (test/spec/story/dev files excluded) while dead-code and health stay on the full tree. Set it to scope production analysis to dupes independently.
619 pub dupes: bool,
620}
621
622/// The `audit` config section: in-repo defaults for `fallow audit`, each
623/// overridable by its matching CLI flag.
624#[derive(Debug, Default, Clone, Deserialize, Serialize, JsonSchema)]
625#[serde(rename_all = "camelCase")]
626pub struct AuditConfig {
627 /// Selects which findings affect the `fallow audit` verdict: `new-only` (default) fails only on findings introduced by the current changeset (running a base-snapshot attribution pass), while `all` fails on every finding in changed files and skips that pass. Set to `all` to gate the full backlog in changed files; the `--gate` CLI flag overrides this.
628 #[serde(default, skip_serializing_if = "AuditGate::is_default")]
629 pub gate: AuditGate,
630
631 /// Toggles styling analytics (CSS and CSS-in-JS) in the `fallow audit` health sub-pass; these findings are descriptive and verdict-neutral by default (they change the exit code only when a css-* rule is set to error). Defaults to on when unset; set `false` to skip styling analysis. The `--no-css` CLI flag forces it off regardless.
632 #[serde(default, skip_serializing_if = "Option::is_none")]
633 pub css: Option<bool>,
634
635 /// Toggles the project-wide CSS reachability pass in `fallow audit`, whose cross-file findings are narrowed back to changed anchors. Defaults to on when unset and runs only when css analytics are enabled; set `false` to keep local styling analytics but skip the whole-project scan. The `--css-deep` flag re-enables it and `--no-css-deep` forces it off.
636 #[serde(default, skip_serializing_if = "Option::is_none")]
637 pub css_deep: Option<bool>,
638
639 /// Path to a saved dead-code baseline file (produced by `fallow dead-code --save-baseline`) that the audit's dead-code sub-analysis compares against, suppressing pre-existing dead-code issues. The `--dead-code-baseline` CLI flag overrides it and both resolve relative to the project root; each sub-analysis uses a distinct baseline format, so this is separate from `healthBaseline` and `dupesBaseline`.
640 #[serde(default, skip_serializing_if = "Option::is_none")]
641 pub dead_code_baseline: Option<String>,
642
643 /// Path to a saved health/complexity baseline file (produced by `fallow health --save-baseline`) that the audit's health sub-analysis compares against, suppressing pre-existing complexity/health findings. The `--health-baseline` CLI flag overrides it and both resolve relative to the project root; its baseline format is distinct from the dead-code and dupes baselines.
644 #[serde(default, skip_serializing_if = "Option::is_none")]
645 pub health_baseline: Option<String>,
646
647 /// Path to a saved duplication baseline file (produced by `fallow dupes --save-baseline`) that the audit's duplication sub-analysis compares clone groups against, suppressing pre-existing duplicate clones. The `--dupes-baseline` CLI flag overrides it and both resolve relative to the project root; its baseline format is distinct from the dead-code and health baselines.
648 #[serde(default, skip_serializing_if = "Option::is_none")]
649 pub dupes_baseline: Option<String>,
650
651 /// Garbage-collection threshold, in whole days, for the persistent reusable base-snapshot worktree caches `fallow audit` creates: entries older than this window are swept on each audit run. Set to control cache accumulation; `0` disables the sweep and unset defaults to 30 days. Each sweep also reclaims abandoned entries minted under other repo identities (deleted or moved repos, other git worktrees) once they age past this repo's threshold; entries whose recorded owner root still exists are skipped and stay governed by that repo's own setting. The `FALLOW_AUDIT_CACHE_MAX_AGE_DAYS` environment variable overrides this field.
652 #[serde(default, skip_serializing_if = "Option::is_none")]
653 pub cache_max_age_days: Option<u32>,
654
655 /// Overrides the top-level `typeAware.enabled` opt-in for `fallow audit` only: set `false` to keep persistent type-aware analysis on for cleanup commands (`dead-code`, `fix`, `health`) while the audit gate stays syntactic, or `true` to enable it for audit alone. Unset inherits `typeAware.enabled`. The `--type-aware`/`--no-type-aware` CLI flags and the `FALLOW_TYPE_AWARE` environment variable both take precedence over this field.
656 #[serde(default, skip_serializing_if = "Option::is_none")]
657 pub type_aware: Option<bool>,
658}
659
660impl AuditConfig {
661 /// True when every field is unset, so serialization can omit the section.
662 #[must_use]
663 pub fn is_empty(&self) -> bool {
664 self.gate.is_default()
665 && self.css.is_none()
666 && self.css_deep.is_none()
667 && self.dead_code_baseline.is_none()
668 && self.health_baseline.is_none()
669 && self.dupes_baseline.is_none()
670 && self.cache_max_age_days.is_none()
671 && self.type_aware.is_none()
672 }
673}
674
675/// Value of `audit.gate`: which findings drive the `fallow audit` verdict.
676#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]
677#[serde(rename_all = "kebab-case")]
678pub enum AuditGate {
679 /// Fail only on findings the current changeset introduced, determined by
680 /// a base-snapshot attribution pass. The default.
681 #[default]
682 NewOnly,
683 /// Fail on every finding in changed files, skipping the attribution pass.
684 All,
685}
686
687impl AuditGate {
688 /// True for the default `new-only` gate, so serialization can omit it.
689 #[must_use]
690 pub const fn is_default(&self) -> bool {
691 matches!(self, Self::NewOnly)
692 }
693}
694
695/// The `regression` config section holding the saved issue-count baseline for
696/// the `--fail-on-regression` gate.
697#[derive(Debug, Default, Clone, Deserialize, Serialize, JsonSchema)]
698#[serde(rename_all = "camelCase")]
699pub struct RegressionConfig {
700 /// The saved per-issue-type issue counts that `--fail-on-regression` compares the current run against; the gate fails only when counts grow beyond the configured tolerance. Typically written by `--save-baseline` rather than hand-authored; each field (total_issues plus per-kind counts like unused_exports, boundary_violations, policy_violations) is an integer defaulting to 0 when omitted. Absent means no baseline is embedded.
701 #[serde(default, skip_serializing_if = "Option::is_none")]
702 pub baseline: Option<RegressionBaseline>,
703}
704
705/// Saved per-issue-type counts written by `--save-baseline` and compared by
706/// `--fail-on-regression`. Every count defaults to `0` when its key is missing,
707/// so hand-trimmed baselines stay loadable.
708#[derive(Debug, Default, Clone, Deserialize, Serialize, JsonSchema)]
709#[serde(rename_all = "camelCase")]
710pub struct RegressionBaseline {
711 /// Compatibility identity for the analysis that produced these counts.
712 /// Missing values in existing configs are treated as syntactic.
713 #[serde(default)]
714 pub analysis_identity: fallow_types::semantic::SemanticAnalysisIdentity,
715 /// Baseline count across all issue types.
716 #[serde(default)]
717 pub total_issues: usize,
718 /// Baseline count of `unused-files` findings.
719 #[serde(default)]
720 pub unused_files: usize,
721 /// Baseline count of `unused-exports` findings.
722 #[serde(default)]
723 pub unused_exports: usize,
724 /// Baseline count of `unused-types` findings.
725 #[serde(default)]
726 pub unused_types: usize,
727 /// Baseline count of `unused-dependencies` findings.
728 #[serde(default)]
729 pub unused_dependencies: usize,
730 /// Baseline count of `unused-dev-dependencies` findings.
731 #[serde(default)]
732 pub unused_dev_dependencies: usize,
733 /// Baseline count of `unused-optional-dependencies` findings.
734 #[serde(default)]
735 pub unused_optional_dependencies: usize,
736 /// Baseline count of `unused-enum-members` findings.
737 #[serde(default)]
738 pub unused_enum_members: usize,
739 /// Baseline count of `unused-class-members` findings.
740 #[serde(default)]
741 pub unused_class_members: usize,
742 /// Baseline count of `unresolved-imports` findings.
743 #[serde(default)]
744 pub unresolved_imports: usize,
745 /// Baseline count of `unlisted-dependencies` findings.
746 #[serde(default)]
747 pub unlisted_dependencies: usize,
748 /// Baseline count of `duplicate-exports` findings.
749 #[serde(default)]
750 pub duplicate_exports: usize,
751 /// Baseline count of `circular-dependencies` findings.
752 #[serde(default)]
753 pub circular_dependencies: usize,
754 /// Baseline count of `re-export-cycle` findings.
755 #[serde(default)]
756 pub re_export_cycles: usize,
757 /// Baseline count of `type-only-dependencies` findings.
758 #[serde(default)]
759 pub type_only_dependencies: usize,
760 /// Baseline count of `test-only-dependencies` findings.
761 #[serde(default)]
762 pub test_only_dependencies: usize,
763 /// Baseline count of `dev-dependencies-in-production` findings.
764 #[serde(default)]
765 pub dev_dependencies_in_production: usize,
766 /// Baseline count of `boundary-violation` findings.
767 #[serde(default)]
768 pub boundary_violations: usize,
769 /// Baseline count of boundary-coverage-violation findings.
770 #[serde(default)]
771 pub boundary_coverage_violations: usize,
772 /// Baseline count of boundary-call-violation findings.
773 #[serde(default)]
774 pub boundary_call_violations: usize,
775 /// Baseline count of `policy-violation` findings.
776 #[serde(default)]
777 pub policy_violations: usize,
778}
779
780#[cfg(test)]
781mod tests {
782 use super::*;
783
784 #[test]
785 fn default_config_has_empty_collections() {
786 let config = FallowConfig::default();
787 assert!(config.schema.is_none());
788 assert!(config.extends.is_empty());
789 assert!(config.entry.is_empty());
790 assert!(config.ignore_patterns.is_empty());
791 assert!(config.ignore_findings.is_empty());
792 assert!(config.framework.is_empty());
793 assert!(config.workspaces.is_none());
794 assert!(config.ignore_dependencies.is_empty());
795 assert!(config.ignore_exports.is_empty());
796 assert!(config.used_class_members.is_empty());
797 assert!(config.plugins.is_empty());
798 assert!(config.dynamically_loaded.is_empty());
799 assert!(config.overrides.is_empty());
800 assert!(config.public_packages.is_empty());
801 assert_eq!(
802 config.fix.catalog.delete_preceding_comments,
803 CatalogPrecedingCommentPolicy::Auto
804 );
805 assert!(!config.production);
806 }
807
808 #[test]
809 fn default_config_rules_are_error() {
810 let config = FallowConfig::default();
811 assert_eq!(config.rules.unused_files, Severity::Error);
812 assert_eq!(config.rules.unused_exports, Severity::Error);
813 assert_eq!(config.rules.unused_dependencies, Severity::Error);
814 }
815
816 #[test]
817 fn default_config_duplicates_enabled() {
818 let config = FallowConfig::default();
819 assert!(config.duplicates.enabled);
820 assert_eq!(config.duplicates.min_tokens, 50);
821 assert_eq!(config.duplicates.min_lines, 5);
822 }
823
824 #[test]
825 fn default_config_health_thresholds() {
826 let config = FallowConfig::default();
827 assert_eq!(config.health.max_cyclomatic, 20);
828 assert_eq!(config.health.max_cognitive, 15);
829 }
830
831 #[test]
832 fn deserialize_empty_json_object() {
833 let config: FallowConfig = serde_json::from_str("{}").unwrap();
834 assert!(config.entry.is_empty());
835 assert!(!config.production);
836 assert!(!config.type_aware.enabled);
837 assert_eq!(config.type_aware.require, TypeAwareRequire::BestEffort);
838 }
839
840 #[test]
841 fn deserialize_type_aware_config() {
842 let config: FallowConfig = serde_json::from_str(
843 r#"{"typeAware":{"enabled":true,"projects":["tsconfig.app.json"],"require":"complete"}}"#,
844 )
845 .unwrap();
846
847 assert!(config.type_aware.enabled);
848 assert_eq!(config.type_aware.projects, ["tsconfig.app.json"]);
849 assert_eq!(config.type_aware.require, TypeAwareRequire::Complete);
850 }
851
852 #[test]
853 fn deserialize_type_aware_config_rejects_unknown_fields() {
854 let result = serde_json::from_str::<FallowConfig>(
855 r#"{"typeAware":{"enabled":true,"compilerDiagnostics":true}}"#,
856 );
857 assert!(result.is_err());
858 }
859
860 #[test]
861 fn deserialize_json_with_all_top_level_fields() {
862 let json = r#"{
863 "$schema": "./node_modules/fallow/schema.json",
864 "entry": ["src/main.ts"],
865 "ignorePatterns": ["generated/**"],
866 "ignoreFindings": ["**/*.test.ts", "!src/public/**"],
867 "ignoreDependencies": ["postcss"],
868 "production": true,
869 "plugins": ["custom-plugin.toml"],
870 "rules": {"unused-files": "warn"},
871 "duplicates": {"enabled": false},
872 "health": {"maxCyclomatic": 30}
873 }"#;
874 let config: FallowConfig = serde_json::from_str(json).unwrap();
875 assert_eq!(
876 config.schema.as_deref(),
877 Some("./node_modules/fallow/schema.json")
878 );
879 assert_eq!(config.entry, vec!["src/main.ts"]);
880 assert_eq!(config.ignore_patterns, vec!["generated/**"]);
881 assert_eq!(
882 config.ignore_findings,
883 vec!["**/*.test.ts", "!src/public/**"]
884 );
885 assert_eq!(config.ignore_dependencies, vec!["postcss"]);
886 assert!(config.production);
887 assert_eq!(config.plugins, vec!["custom-plugin.toml"]);
888 assert_eq!(config.rules.unused_files, Severity::Warn);
889 assert!(!config.duplicates.enabled);
890 assert_eq!(config.health.max_cyclomatic, 30);
891 }
892
893 #[test]
894 fn deserialize_json_deny_unknown_fields() {
895 let json = r#"{"unknownField": true}"#;
896 let result: Result<FallowConfig, _> = serde_json::from_str(json);
897 assert!(result.is_err(), "unknown fields should be rejected");
898 }
899
900 #[test]
901 fn ignore_findings_serialization_is_canonical_and_sparse() {
902 let default_value = serde_json::to_value(FallowConfig::default()).unwrap();
903 assert!(default_value.get("ignoreFindings").is_none());
904
905 let config = FallowConfig {
906 ignore_findings: vec!["**/*.test.ts".to_string(), "!src/public/**".to_string()],
907 ..Default::default()
908 };
909 let value = serde_json::to_value(config).unwrap();
910 assert_eq!(
911 value.get("ignoreFindings"),
912 Some(&serde_json::json!(["**/*.test.ts", "!src/public/**"]))
913 );
914 }
915
916 #[test]
917 fn ignore_findings_deserializes_from_toml() {
918 let config: FallowConfig =
919 toml::from_str(r#"ignoreFindings = ["**/*.test.ts", "!src/public/**"]"#).unwrap();
920
921 assert_eq!(
922 config.ignore_findings,
923 vec!["**/*.test.ts", "!src/public/**"]
924 );
925 }
926
927 #[test]
928 fn generic_ignore_alias_is_rejected() {
929 let result = serde_json::from_str::<FallowConfig>(r#"{"ignore": ["**/*.test.ts"]}"#);
930
931 assert!(result.is_err());
932 }
933
934 #[test]
935 fn deserialize_json_production_mode_default_false() {
936 let config: FallowConfig = serde_json::from_str("{}").unwrap();
937 assert!(!config.production);
938 }
939
940 #[test]
941 fn deserialize_json_production_mode_true() {
942 let config: FallowConfig = serde_json::from_str(r#"{"production": true}"#).unwrap();
943 assert!(config.production);
944 }
945
946 #[test]
947 fn deserialize_json_per_analysis_production_mode() {
948 let config: FallowConfig = serde_json::from_str(
949 r#"{"production": {"deadCode": false, "health": true, "dupes": false}}"#,
950 )
951 .unwrap();
952 assert!(!config.production.for_analysis(ProductionAnalysis::DeadCode));
953 assert!(config.production.for_analysis(ProductionAnalysis::Health));
954 assert!(!config.production.for_analysis(ProductionAnalysis::Dupes));
955 }
956
957 #[test]
958 fn deserialize_json_per_analysis_production_mode_rejects_unknown_fields() {
959 let err = serde_json::from_str::<FallowConfig>(r#"{"production": {"healthTypo": true}}"#)
960 .unwrap_err();
961 assert!(
962 err.to_string().contains("healthTypo"),
963 "error should name the unknown field: {err}"
964 );
965 }
966
967 #[test]
968 fn deserialize_json_dynamically_loaded() {
969 let json = r#"{"dynamicallyLoaded": ["plugins/**/*.ts", "locales/**/*.json"]}"#;
970 let config: FallowConfig = serde_json::from_str(json).unwrap();
971 assert_eq!(
972 config.dynamically_loaded,
973 vec!["plugins/**/*.ts", "locales/**/*.json"]
974 );
975 }
976
977 #[test]
978 fn deserialize_json_dynamically_loaded_defaults_empty() {
979 let config: FallowConfig = serde_json::from_str("{}").unwrap();
980 assert!(config.dynamically_loaded.is_empty());
981 }
982
983 #[test]
984 fn deserialize_json_fix_catalog_delete_preceding_comments() {
985 let config: FallowConfig =
986 serde_json::from_str(r#"{"fix": {"catalog": {"deletePrecedingComments": "always"}}}"#)
987 .unwrap();
988 assert_eq!(
989 config.fix.catalog.delete_preceding_comments,
990 CatalogPrecedingCommentPolicy::Always
991 );
992 }
993
994 #[test]
995 fn deserialize_json_fix_catalog_delete_preceding_comments_rejects_unknown_policy() {
996 let err = serde_json::from_str::<FallowConfig>(
997 r#"{"fix": {"catalog": {"deletePrecedingComments": "sometimes"}}}"#,
998 )
999 .unwrap_err();
1000 assert!(
1001 err.to_string().contains("sometimes"),
1002 "error should name the bad policy: {err}"
1003 );
1004 }
1005
1006 #[test]
1007 fn deserialize_json_used_class_members_supports_strings_and_scoped_rules() {
1008 let json = r#"{
1009 "usedClassMembers": [
1010 "agInit",
1011 { "implements": "ICellRendererAngularComp", "members": ["refresh"] },
1012 { "extends": "BaseCommand", "implements": "CanActivate", "members": ["execute"] }
1013 ]
1014 }"#;
1015 let config: FallowConfig = serde_json::from_str(json).unwrap();
1016 assert_eq!(
1017 config.used_class_members,
1018 vec![
1019 UsedClassMemberRule::from("agInit"),
1020 UsedClassMemberRule::Scoped(ScopedUsedClassMemberRule {
1021 extends: None,
1022 implements: Some("ICellRendererAngularComp".to_string()),
1023 members: vec!["refresh".to_string()],
1024 }),
1025 UsedClassMemberRule::Scoped(ScopedUsedClassMemberRule {
1026 extends: Some("BaseCommand".to_string()),
1027 implements: Some("CanActivate".to_string()),
1028 members: vec!["execute".to_string()],
1029 }),
1030 ]
1031 );
1032 }
1033
1034 #[test]
1035 fn deserialize_toml_minimal() {
1036 let toml_str = r#"
1037entry = ["src/index.ts"]
1038production = true
1039"#;
1040 let config: FallowConfig = toml::from_str(toml_str).unwrap();
1041 assert_eq!(config.entry, vec!["src/index.ts"]);
1042 assert!(config.production);
1043 }
1044
1045 #[test]
1046 fn workspaces_packages_key_is_accepted_as_patterns_alias() {
1047 // An older `fallow init --toml` wrote `[workspaces]` with a `packages`
1048 // key; the back-compat serde alias keeps those existing configs scoping
1049 // instead of silently dropping the (unknown) key and losing the patterns.
1050 let config: FallowConfig =
1051 toml::from_str("[workspaces]\npackages = [\"packages/*\", \"apps/*\"]").unwrap();
1052 assert_eq!(
1053 config.workspaces.map(|w| w.patterns).unwrap_or_default(),
1054 vec!["packages/*".to_string(), "apps/*".to_string()],
1055 "the `packages` alias must populate `patterns`"
1056 );
1057 }
1058
1059 #[test]
1060 fn deserialize_toml_per_analysis_production_mode() {
1061 let toml_str = r"
1062[production]
1063deadCode = false
1064health = true
1065dupes = false
1066";
1067 let config: FallowConfig = toml::from_str(toml_str).unwrap();
1068 assert!(!config.production.for_analysis(ProductionAnalysis::DeadCode));
1069 assert!(config.production.for_analysis(ProductionAnalysis::Health));
1070 assert!(!config.production.for_analysis(ProductionAnalysis::Dupes));
1071 }
1072
1073 #[test]
1074 fn deserialize_toml_per_analysis_production_mode_rejects_unknown_fields() {
1075 let err = toml::from_str::<FallowConfig>(
1076 r"
1077[production]
1078healthTypo = true
1079",
1080 )
1081 .unwrap_err();
1082 assert!(
1083 err.to_string().contains("healthTypo"),
1084 "error should name the unknown field: {err}"
1085 );
1086 }
1087
1088 #[test]
1089 fn deserialize_toml_with_inline_framework() {
1090 let toml_str = r#"
1091[[framework]]
1092name = "my-framework"
1093enablers = ["my-framework-pkg"]
1094entryPoints = ["src/routes/**/*.tsx"]
1095"#;
1096 let config: FallowConfig = toml::from_str(toml_str).unwrap();
1097 assert_eq!(config.framework.len(), 1);
1098 assert_eq!(config.framework[0].name, "my-framework");
1099 assert_eq!(config.framework[0].enablers, vec!["my-framework-pkg"]);
1100 assert_eq!(
1101 config.framework[0].entry_points,
1102 vec!["src/routes/**/*.tsx"]
1103 );
1104 }
1105
1106 #[test]
1107 fn deserialize_toml_fix_catalog_delete_preceding_comments() {
1108 let toml_str = r#"
1109[fix.catalog]
1110deletePrecedingComments = "never"
1111"#;
1112 let config: FallowConfig = toml::from_str(toml_str).unwrap();
1113 assert_eq!(
1114 config.fix.catalog.delete_preceding_comments,
1115 CatalogPrecedingCommentPolicy::Never
1116 );
1117 }
1118
1119 #[test]
1120 fn deserialize_toml_with_workspace_config() {
1121 let toml_str = r#"
1122[workspaces]
1123patterns = ["packages/*", "apps/*"]
1124"#;
1125 let config: FallowConfig = toml::from_str(toml_str).unwrap();
1126 assert!(config.workspaces.is_some());
1127 let ws = config.workspaces.unwrap();
1128 assert_eq!(ws.patterns, vec!["packages/*", "apps/*"]);
1129 }
1130
1131 #[test]
1132 fn deserialize_toml_with_ignore_exports() {
1133 let toml_str = r#"
1134[[ignoreExports]]
1135file = "src/types/**/*.ts"
1136exports = ["*"]
1137"#;
1138 let config: FallowConfig = toml::from_str(toml_str).unwrap();
1139 assert_eq!(config.ignore_exports.len(), 1);
1140 assert_eq!(config.ignore_exports[0].file, "src/types/**/*.ts");
1141 assert_eq!(config.ignore_exports[0].exports, vec!["*"]);
1142 }
1143
1144 #[test]
1145 fn deserialize_toml_used_class_members_supports_scoped_rules() {
1146 let toml_str = r#"
1147usedClassMembers = [
1148 { implements = "ICellRendererAngularComp", members = ["refresh"] },
1149 { extends = "BaseCommand", members = ["execute"] },
1150]
1151"#;
1152 let config: FallowConfig = toml::from_str(toml_str).unwrap();
1153 assert_eq!(
1154 config.used_class_members,
1155 vec![
1156 UsedClassMemberRule::Scoped(ScopedUsedClassMemberRule {
1157 extends: None,
1158 implements: Some("ICellRendererAngularComp".to_string()),
1159 members: vec!["refresh".to_string()],
1160 }),
1161 UsedClassMemberRule::Scoped(ScopedUsedClassMemberRule {
1162 extends: Some("BaseCommand".to_string()),
1163 implements: None,
1164 members: vec!["execute".to_string()],
1165 }),
1166 ]
1167 );
1168 }
1169
1170 #[test]
1171 fn deserialize_json_used_class_members_rejects_unconstrained_scoped_rules() {
1172 let result = serde_json::from_str::<FallowConfig>(
1173 r#"{"usedClassMembers":[{"members":["refresh"]}]}"#,
1174 );
1175 assert!(
1176 result.is_err(),
1177 "unconstrained scoped rule should be rejected"
1178 );
1179 }
1180
1181 #[test]
1182 fn deserialize_ignore_exports_used_in_file_bool() {
1183 let config: FallowConfig =
1184 serde_json::from_str(r#"{"ignoreExportsUsedInFile":true}"#).unwrap();
1185
1186 assert!(config.ignore_exports_used_in_file.suppresses(false));
1187 assert!(config.ignore_exports_used_in_file.suppresses(true));
1188 }
1189
1190 #[test]
1191 fn deserialize_ignore_exports_used_in_file_kind_form() {
1192 let config: FallowConfig =
1193 serde_json::from_str(r#"{"ignoreExportsUsedInFile":{"type":true}}"#).unwrap();
1194
1195 assert!(!config.ignore_exports_used_in_file.suppresses(false));
1196 assert!(config.ignore_exports_used_in_file.suppresses(true));
1197 }
1198
1199 #[test]
1200 fn deserialize_toml_deny_unknown_fields() {
1201 let toml_str = r"bogus_field = true";
1202 let result: Result<FallowConfig, _> = toml::from_str(toml_str);
1203 assert!(result.is_err(), "unknown fields should be rejected");
1204 }
1205
1206 #[test]
1207 fn json_serialize_roundtrip() {
1208 let config = FallowConfig {
1209 entry: vec!["src/main.ts".to_string()],
1210 production: true.into(),
1211 ..FallowConfig::default()
1212 };
1213 let json = serde_json::to_string(&config).unwrap();
1214 let restored: FallowConfig = serde_json::from_str(&json).unwrap();
1215 assert_eq!(restored.entry, vec!["src/main.ts"]);
1216 assert!(restored.production);
1217 }
1218
1219 #[test]
1220 fn schema_field_not_serialized() {
1221 let config = FallowConfig {
1222 schema: Some("https://example.com/schema.json".to_string()),
1223 ..FallowConfig::default()
1224 };
1225 let json = serde_json::to_string(&config).unwrap();
1226 assert!(
1227 !json.contains("$schema"),
1228 "schema field should be skipped in serialization"
1229 );
1230 }
1231
1232 #[test]
1233 fn extends_field_not_serialized() {
1234 let config = FallowConfig {
1235 extends: vec!["base.json".to_string()],
1236 ..FallowConfig::default()
1237 };
1238 let json = serde_json::to_string(&config).unwrap();
1239 assert!(
1240 !json.contains("extends"),
1241 "extends field should be skipped in serialization"
1242 );
1243 }
1244
1245 #[test]
1246 fn regression_config_deserialize_json() {
1247 let json = r#"{
1248 "regression": {
1249 "baseline": {
1250 "totalIssues": 42,
1251 "unusedFiles": 10,
1252 "unusedExports": 5,
1253 "circularDependencies": 2
1254 }
1255 }
1256 }"#;
1257 let config: FallowConfig = serde_json::from_str(json).unwrap();
1258 let regression = config.regression.unwrap();
1259 let baseline = regression.baseline.unwrap();
1260 assert_eq!(baseline.total_issues, 42);
1261 assert_eq!(baseline.unused_files, 10);
1262 assert_eq!(baseline.unused_exports, 5);
1263 assert_eq!(baseline.circular_dependencies, 2);
1264 assert_eq!(baseline.unused_types, 0);
1265 assert_eq!(baseline.boundary_violations, 0);
1266 }
1267
1268 #[test]
1269 fn regression_config_defaults_to_none() {
1270 let config: FallowConfig = serde_json::from_str("{}").unwrap();
1271 assert!(config.regression.is_none());
1272 }
1273
1274 #[test]
1275 fn regression_baseline_all_zeros_by_default() {
1276 let baseline = RegressionBaseline::default();
1277 assert_eq!(baseline.total_issues, 0);
1278 assert_eq!(baseline.unused_files, 0);
1279 assert_eq!(baseline.unused_exports, 0);
1280 assert_eq!(baseline.unused_types, 0);
1281 assert_eq!(baseline.unused_dependencies, 0);
1282 assert_eq!(baseline.unused_dev_dependencies, 0);
1283 assert_eq!(baseline.unused_optional_dependencies, 0);
1284 assert_eq!(baseline.unused_enum_members, 0);
1285 assert_eq!(baseline.unused_class_members, 0);
1286 assert_eq!(baseline.unresolved_imports, 0);
1287 assert_eq!(baseline.unlisted_dependencies, 0);
1288 assert_eq!(baseline.duplicate_exports, 0);
1289 assert_eq!(baseline.circular_dependencies, 0);
1290 assert_eq!(baseline.type_only_dependencies, 0);
1291 assert_eq!(baseline.test_only_dependencies, 0);
1292 assert_eq!(baseline.boundary_violations, 0);
1293 }
1294
1295 #[test]
1296 fn regression_config_serialize_roundtrip() {
1297 let baseline = RegressionBaseline {
1298 total_issues: 100,
1299 unused_files: 20,
1300 unused_exports: 30,
1301 ..RegressionBaseline::default()
1302 };
1303 let regression = RegressionConfig {
1304 baseline: Some(baseline),
1305 };
1306 let config = FallowConfig {
1307 regression: Some(regression),
1308 ..FallowConfig::default()
1309 };
1310 let json = serde_json::to_string(&config).unwrap();
1311 let restored: FallowConfig = serde_json::from_str(&json).unwrap();
1312 let restored_baseline = restored.regression.unwrap().baseline.unwrap();
1313 assert_eq!(restored_baseline.total_issues, 100);
1314 assert_eq!(restored_baseline.unused_files, 20);
1315 assert_eq!(restored_baseline.unused_exports, 30);
1316 assert_eq!(restored_baseline.unused_types, 0);
1317 }
1318
1319 #[test]
1320 fn regression_config_empty_baseline_deserialize() {
1321 let json = r#"{"regression": {}}"#;
1322 let config: FallowConfig = serde_json::from_str(json).unwrap();
1323 let regression = config.regression.unwrap();
1324 assert!(regression.baseline.is_none());
1325 }
1326
1327 #[test]
1328 fn regression_baseline_not_serialized_when_none() {
1329 let config = FallowConfig {
1330 regression: None,
1331 ..FallowConfig::default()
1332 };
1333 let json = serde_json::to_string(&config).unwrap();
1334 assert!(
1335 !json.contains("regression"),
1336 "regression should be skipped when None"
1337 );
1338 }
1339
1340 #[test]
1341 fn deserialize_json_with_overrides() {
1342 let json = r#"{
1343 "overrides": [
1344 {
1345 "files": ["*.test.ts", "*.spec.ts"],
1346 "rules": {
1347 "unused-exports": "off",
1348 "unused-files": "warn"
1349 }
1350 }
1351 ]
1352 }"#;
1353 let config: FallowConfig = serde_json::from_str(json).unwrap();
1354 assert_eq!(config.overrides.len(), 1);
1355 assert_eq!(config.overrides[0].files.len(), 2);
1356 assert_eq!(
1357 config.overrides[0].rules.unused_exports,
1358 Some(Severity::Off)
1359 );
1360 assert_eq!(config.overrides[0].rules.unused_files, Some(Severity::Warn));
1361 }
1362
1363 #[test]
1364 fn deserialize_json_with_boundaries() {
1365 let json = r#"{
1366 "boundaries": {
1367 "preset": "layered"
1368 }
1369 }"#;
1370 let config: FallowConfig = serde_json::from_str(json).unwrap();
1371 assert_eq!(config.boundaries.preset, Some(BoundaryPreset::Layered));
1372 }
1373
1374 #[test]
1375 fn deserialize_toml_with_regression_baseline() {
1376 let toml_str = r"
1377[regression.baseline]
1378totalIssues = 50
1379unusedFiles = 10
1380unusedExports = 15
1381";
1382 let config: FallowConfig = toml::from_str(toml_str).unwrap();
1383 let baseline = config.regression.unwrap().baseline.unwrap();
1384 assert_eq!(baseline.total_issues, 50);
1385 assert_eq!(baseline.unused_files, 10);
1386 assert_eq!(baseline.unused_exports, 15);
1387 }
1388
1389 #[test]
1390 fn deserialize_toml_with_overrides() {
1391 let toml_str = r#"
1392[[overrides]]
1393files = ["*.test.ts"]
1394
1395[overrides.rules]
1396unused-exports = "off"
1397
1398[[overrides]]
1399files = ["*.stories.tsx"]
1400
1401[overrides.rules]
1402unused-files = "off"
1403"#;
1404 let config: FallowConfig = toml::from_str(toml_str).unwrap();
1405 assert_eq!(config.overrides.len(), 2);
1406 assert_eq!(
1407 config.overrides[0].rules.unused_exports,
1408 Some(Severity::Off)
1409 );
1410 assert_eq!(config.overrides[1].rules.unused_files, Some(Severity::Off));
1411 }
1412
1413 #[test]
1414 fn regression_config_default_is_none_baseline() {
1415 let config = RegressionConfig::default();
1416 assert!(config.baseline.is_none());
1417 }
1418
1419 #[test]
1420 fn deserialize_json_multiple_ignore_export_rules() {
1421 let json = r#"{
1422 "ignoreExports": [
1423 {"file": "src/types/**/*.ts", "exports": ["*"]},
1424 {"file": "src/constants.ts", "exports": ["FOO", "BAR"]},
1425 {"file": "src/index.ts", "exports": ["default"]}
1426 ]
1427 }"#;
1428 let config: FallowConfig = serde_json::from_str(json).unwrap();
1429 assert_eq!(config.ignore_exports.len(), 3);
1430 assert_eq!(config.ignore_exports[2].exports, vec!["default"]);
1431 }
1432
1433 #[test]
1434 fn deserialize_json_public_packages_camel_case() {
1435 let json = r#"{"publicPackages": ["@myorg/shared-lib", "@myorg/utils"]}"#;
1436 let config: FallowConfig = serde_json::from_str(json).unwrap();
1437 assert_eq!(
1438 config.public_packages,
1439 vec!["@myorg/shared-lib", "@myorg/utils"]
1440 );
1441 }
1442
1443 #[test]
1444 fn deserialize_json_public_packages_rejects_snake_case() {
1445 let json = r#"{"public_packages": ["@myorg/shared-lib"]}"#;
1446 let result: Result<FallowConfig, _> = serde_json::from_str(json);
1447 assert!(
1448 result.is_err(),
1449 "snake_case should be rejected by deny_unknown_fields + rename_all camelCase"
1450 );
1451 }
1452
1453 #[test]
1454 fn deserialize_json_public_packages_empty() {
1455 let config: FallowConfig = serde_json::from_str("{}").unwrap();
1456 assert!(config.public_packages.is_empty());
1457 }
1458
1459 #[test]
1460 fn deserialize_toml_public_packages() {
1461 let toml_str = r#"
1462publicPackages = ["@myorg/shared-lib", "@myorg/ui"]
1463"#;
1464 let config: FallowConfig = toml::from_str(toml_str).unwrap();
1465 assert_eq!(
1466 config.public_packages,
1467 vec!["@myorg/shared-lib", "@myorg/ui"]
1468 );
1469 }
1470
1471 #[test]
1472 fn public_packages_serialize_roundtrip() {
1473 let config = FallowConfig {
1474 public_packages: vec!["@myorg/shared-lib".to_string()],
1475 ..FallowConfig::default()
1476 };
1477 let json = serde_json::to_string(&config).unwrap();
1478 let restored: FallowConfig = serde_json::from_str(&json).unwrap();
1479 assert_eq!(restored.public_packages, vec!["@myorg/shared-lib"]);
1480 }
1481}