We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
PR #5 added an example of a decorator for alphabetical sorting. Someone highlighted the importance of case-sensitivity.
Here's a paraphrased example of sorting challenges caused by casing:
Pretend you're looking for the term "API Keys" on an alphabetically sorted list. Which order would you expect? Case sensitive Not case-sensitive AML API keys Accounts Allowlists Application owners Application users Coupons Accounts Allowlists AML API keys Application owners Application users Coupons
Pretend you're looking for the term "API Keys" on an alphabetically sorted list. Which order would you expect?
The redocly-cli solved for this using an ignoreCase flag. A similar solution might work well here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PR #5 added an example of a decorator for alphabetical sorting. Someone highlighted the importance of case-sensitivity.
Here's a paraphrased example of sorting challenges caused by casing:
The redocly-cli solved for this using an ignoreCase flag. A similar solution might work well here.
The text was updated successfully, but these errors were encountered: