clean-code-metrics
Version:
metrics for clean code
27 lines (24 loc) • 409 B
TypeScript
export type TaskOccurrence = {
file: string;
lineNumber: number;
content: string;
comment: string;
task: string;
//TODO age: days
};
export type TaskFile = {
file: string;
tasks: {
task: string;
lineNumber: number;
comment: string;
content: string;
}[];
};
export type Config = {
basePath: string;
ignorePath: string[];
ignoreCase: boolean;
searchPattern: string[];
type: "Config";
};