Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request: Option to sort file tree alphabetically #54

Open
evanheckert opened this issue Dec 20, 2024 · 0 comments
Open

Feature Request: Option to sort file tree alphabetically #54

evanheckert opened this issue Dec 20, 2024 · 0 comments

Comments

@evanheckert
Copy link

So for example my migrations folder currently outputs like this:

├── people
│   ├── migrations
│   │   ├── 0007_customuser_can_reconcile.py
│   │   ├── 0008_customuser_hourly_rate.py
│   │   ├── 0004_customuser_installer_code.py
│   │   ├── __init__.py
│   │   ├── 0002_customuser_is_crew_customuser_is_hourly.py
│   │   ├── 0003_rename_is_crew_customuser_is_installer_and_more.py
│   │   ├── 0001_initial.py
│   │   ├── 0005_customuser_is_driver.py
│   │   └── 0006_weeklytimecard.py

while I'd prefer it output this:

├── people
│   ├── migrations
│   │   ├── __init__.py
│   │   ├── 0001_initial.py
│   │   ├── 0002_customuser_is_crew_customuser_is_hourly.py
│   │   ├── 0003_rename_is_crew_customuser_is_installer_and_more.py
│   │   ├── 0004_customuser_installer_code.py
│   │   ├── 0005_customuser_is_driver.py
│   │   └── 0006_weeklytimecard.py
│   │   ├── 0007_customuser_can_reconcile.py
│   │   ├── 0008_customuser_hourly_rate.py

Then of course would prefer the output of each file to be in the same order. Would help especially with things like these migrations in which that order matters quite a bit.

Many thanks for this repo!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant