You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's two things I'm noting that are a bit off here:
.prettierignore is kept separate from .eslintignore and .gitignore
README.md is separated from LICENSE.
I'd be very glad if CHADTree's sorting could get around this. I'm guessing the appropriate solution would be to add an additional category for chadtree_settings.view.sort_by, e.g. classification that would evaluate to different values based on regular expressions, for example
[A-Z]\w+file -> buildfile, matches e.g. Makefile, Dockerfile
\.\w*ignore -> ignorefile, matches e.g. .gitignore, .eslintignore
[A-Z]+(\.[a-z]+)? -> projectfile matches e.g. README.md, CONTRIBUTING, LICENSE
Fallback -> ""
Thank you for your work on this lovely project :)
The text was updated successfully, but these errors were encountered:
I have a directory that's currently sorted as:
There's two things I'm noting that are a bit off here:
.prettierignore
is kept separate from.eslintignore
and.gitignore
README.md
is separated fromLICENSE
.I'd be very glad if CHADTree's sorting could get around this. I'm guessing the appropriate solution would be to add an additional category for
chadtree_settings.view.sort_by
, e.g.classification
that would evaluate to different values based on regular expressions, for example[A-Z]\w+file
->buildfile
, matches e.g.Makefile
,Dockerfile
\.\w*ignore
->ignorefile
, matches e.g..gitignore
,.eslintignore
[A-Z]+(\.[a-z]+)?
->projectfile
matches e.g.README.md
,CONTRIBUTING
,LICENSE
""
Thank you for your work on this lovely project :)
The text was updated successfully, but these errors were encountered: