ruffly-all 0.1.1

Generating a migration path to ruff from anywhere
1
2
3
4
5
6
7
8
9
# 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"
```