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
…flip1995
Fix FP for `suspicious_arithmetic_impl` from `suspicious_trait_impl` …
As discussed in rust-lang#3215, the `suspicious_trait_impl` lint causes too many false positives, as it is complex to find out if binary operations are suspicious or not.
This PR restricts the number of binary operations to at most one, otherwise we don't lint.
This can be seen as very conservative, but at least FP can be reduced to bare minimum.
Fixes: rust-lang#3215
changelog: limit the `suspicious_arithmetic_impl` lint to one binop, to avoid many FPs
Currently, core includes no unicode case folding functions.
Full locale-dependent support as explained in http://www.w3.org/International/wiki/Case_folding is probably out of scope for the core library, however, one following a default folding as mentioned in http://www.unicode.org/faq/casemap_charprop.html#5 should probably be included to make working with strings easier.
The text was updated successfully, but these errors were encountered: