### What it does Lint that suggests using `eq_ignore_ascii_case` on non case-sensitive string comparision. ### Advantage - avoid extra allocation([example](https://github.com/oxc-project/oxc/pull/4570)) ### Drawbacks _No response_ ### Example ```rust a.to_xx_case() == b.to_xx_case() ``` Could be written as: ```rust a.eq_ignore_ascii_case(b) ``` <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"nyurik"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->