mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-05 02:59:27 +02:00
12 lines
394 B
TypeScript
12 lines
394 B
TypeScript
export interface CodeHealthContext {
|
|
rootDir: string;
|
|
/**
|
|
* Repo-relative paths of files changed in the current change set
|
|
* (typically the `changed-files` output from the `ci-filter` action).
|
|
* When supplied, rules that need to scope checks to "files touched in
|
|
* this PR" can use this set. When omitted, rules fall back to
|
|
* whole-tree behaviour.
|
|
*/
|
|
changedFiles?: string[];
|
|
}
|