You must somehow change your Generated Code option in ReSharper, since ReSharper always ignores known generated files and regions by default, so it should not .Designer.cs any violations in any .Designer.cs files.
Make sure your settings look like this:

EDIT : for some reason, most of your defaults are missing. The best you could do is try to reset the default settings.
The fastest one is to remove GlobalSettingsStorage.DotSettings located in %appdata%\JetBrains\ReSharper\vAny , but this will obviously reset all your other settings (such as user name conventions).
Alternatively, you can manually edit the file (it is just an XML file) and delete all lines starting with:
<s:String x:Key="/Default/CodeInspection/GeneratedCode/GeneratedFileMasks...
After deleting the entries, save the file ( make a backup first! ) And restart Visual Studio. Your defaults are expected to be returned.
source share