dsi-clinic / cocoa

Clinic Opinionated Codebase Oversight and Analysis
1 stars 0 forks source link

Have a check, based on a date #5

Closed NickRoss closed 4 months ago

NickRoss commented 4 months ago

Write now, it checks every file in the repo.

What we want: only look for files which have a commit after a specific date that is provided.

If no date is provided, check every file:

def walk_and_process(... start_date=None) if start_date is not None:

You will need to write a function that identifies files with commits after a specific date. (file_after_date())

This will also modify the walk_and_process in the evaluate_repo.py file.