| 106 | |
| 107 | @dataclass |
| 108 | class Options: |
| 109 | folder: Path |
| 110 | recursive: bool |
| 111 | dry_run: bool |
| 112 | prefix: str |
| 113 | keep_original: bool # if true, don't rename if it already matches our format |
| 114 | |
| 115 | |
| 116 | def already_formatted(name: str) -> bool: |
no outgoing calls
no test coverage detected