feat(sort): add locale-aware numeric sorting support
Implement NumericLocaleSettings to handle thousands separators and decimal points based on locale. Update tokenization logic to accommodate blank thousands separators for numeric and human-numeric modes, ensuring proper parsing of numbers with locale-specific formatting. This enhances compatibility with international number representations.
9086147
3 days ago
by mattsu2020
0%
refactor(sort): initialize GlobalSettings with numeric_locale explicitly
Replace default initialization followed by assignment with struct syntax for clarity and to avoid intermediate mutation.
8264a44
3 days ago
by mattsu2020
0%
chore(sort): add localeconv to spell-checker ignore list
- Updated the spell-checker ignore comment in sort.rs to include "localeconv",
preventing false positives for this technical term likely used in locale-related code.