Reports cases when a list declaration can be rewritten with a list literal.

This ensures better performance of your application.

Example:

l = [1]
l.append(2)

When the quick-fix is applied, the code changes to:

l = [1, 2]