Metadata-Version: 2.4
Name: ruffly-all
Version: 0.2.0
Requires-Dist: ruff>=0.15.0
Summary: A small tool generating a migration path to ruff from anywhere.
Requires-Python: >=3.13
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# that's ruffly-all

## Answering whats necessary to migrate your project to ruff right now.

### A glorified version of this oneliner

```bash
ruff check --isolated --select 'ALL' --output-format concise 2>/dev/null | cut -d ' ' -f2 | grep '^[A-Za-z]' | sort | tr -d '0123456789' | uniq"
```

