Report occurrences where usages of "magic" constants are preferred but other expressions are used instead.
E.g.

// bare literal used, warning:
new Font("Arial", 2)

instead of

// "magic" constant used, good:
new Font("Arial", Font.ITALIC)


Please see org.intellij.lang.annotations.MagicConstant annotation description for details.