Reports multiple variables that are declared in a single declaration and suggest creating a separate declaration for each variable.

Some coding standards prohibit such declarations.

Example:


  int x = 1, y = 2;

After the quick-fix is applied:


  int x = 1;
  int y = 2;

Configure the inspection:

New in 2019.2