jjmschofield/github-codeowners

View on GitHub
src/lib/ownership/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type Matcher = (path: string) => boolean;

export interface FileOwnershipMatcher {
  rule: string;
  path: string;
  owners: string[];
  match: Matcher;
  matched: number;
}