Aditya
Aditya
Can you add a setting using which one can sort in descending order? For example: c: 1 b: 1 a: 1 instead of: a: 1 b: 1 c: 1 Thanks
Adds ability to sort in descending (reverse) order. Useful when your YAML files has date or timestamp as keys and you want to inspect latest timestamps without scrolling your long...
### Clear and concise description of the problem The code written in `Suggested solution` enforce alignment at `=` operator, so code like this: ``` const apple=`a`; const pine=`pine`; const banana=`banana`;...
### Describe the rule Dynamic imports are the future, this rule allow to sort imports like these: ``` export const http= f=>n=>{ return Http.serve (f) (n); }; const Http= await...