Analyzer for the nameof expression instead of using the typeof(SomeType).Name to get the name of the current type.
Before:
var name = typeof(SomeType).Name;
After:
var name = nameof(SomeType);
Note: we currently have an analyzer doing nameof analysis in place of a string.