Reports expressions that can be factorized, i.e. reorganized to pull out a common factor. This reduces redundancy and could improve the readability of your code.

Example:


  a && b || a && c

After the quick-fix is applied:


  a && (b || c)

New in 2021.3