Generated Code
File | Settings | Editor | Inspection Settings | Generated Code for Windows and Linux
JetBrains Rider | Settings or Preferences | Editor | Inspection Settings | Generated Code for macOS
CtrlAlt0S
note
Preferences configurable on this page are saved using the mechanism of layer-based settings.
On this page of JetBrains Rider settings, you can specify files and code regions containing automatically generated code. For these items, JetBrains Rider runs only those code inspections that check code for compiler errors and warnings. Some file masks and regions, which are typically used for generated code, for example *.designer.cs are included in this list by default, but you can change the default settings if necessary.
If you use .editorconfig in your solution, you can also mark generated code using the generated_code
property. For example:
[*generated.cs]
generated_code = true
You can use Ant-style wildcards in file masks:
?
to match a single character excluding directory separators*
to match zero or more characters excluding directory separators**
to match any number of characters including directory separators/
or\
to match directory separators regardless of the OS path format
For example a pattern **Test?\**.*
will match the following files:
C:
\Projects \MyTestX \data \file_one.txt /home /projects /TestY /file_two.xml
But not:
C:
\Projects \Test \data \file_one.txt /home /projects /TestY /file_two
The list of items containing generated code can also be used for disabling code cleanup for generated code.