(path, repo_root)
| 150 | |
| 151 | |
| 152 | def check_file(path, repo_root): |
| 153 | front_matter, body, body_start_line = read_post(path) |
| 154 | rel = os.path.relpath(path, repo_root) if repo_root else path |
| 155 | return find_lowercase_paragraphs(body, body_start_line, rel) |
| 156 | |
| 157 | |
| 158 | def expand_paths(paths): |
no test coverage detected