JetBrains Rider 2018.1 Help

Configuring Code Inspection Settings

Toggling design-time code inspection

By default, JetBrains Rider enables design-time code inspection in all files corresponding to the supported languages. If necessary, you can disable it. Regardless of whether or not the design-time code inspection is enabled, you can always run code inspection in specific scope.

To disable or enable design-time code inspection

  1. On the page of JetBrains Rider settings (Ctrl+Alt+S), use the Enable code analysis check box to toggle the design-time code inspection. While you are on this page, you can check out which options you can configure for the code inspection.
  2. If necessary, you can select the Enable solution-wide analysis check box to enable the Solution-Wide Analysis.
  3. Click Save to apply the modifications and let JetBrains Rider choose where to save them, or save the modifications to a specific settings layer using the Save To drop-down list. For more information, see layer-based settings.

Excluding files and folders from code inspection

JetBrains Rider allows you to configure the list of files, file masks, and folders that should be excluded from code inspection. The excluded items are ignored by both design-time code inspection and code inspection in specific scope, but they are still indexed by JetBrains Rider, so that you can navigate to or refactor symbols excluded from code inspection.

To exclude files and folders from code inspection

  1. Press Ctrl+Alt+S, or alternatively choose File | Settings on Windows and Linux or JetBrains Rider | Preferences on macOS, then choose Editor | Inspection Settings on the left.
  2. In the left part of the Elements to skip section, you can specify files or folders to be ignored by the code inspection.
  3. In the right part of this section, you can specify masks (e.g. *.vb) that will exclude all matching files in the solution from code inspection.
  4. Click Save to apply the modifications and let JetBrains Rider choose where to save them, or save the modifications to a specific settings layer using the Save To drop-down list. For more information, see layer-based settings.

You can also quickly exclude the current file from code inspection so that JetBrains Rider adds this file to the list of excluded files without opening the options.

To exclude/include current file from/to code inspection

  • Press Ctrl+Shift+Alt+8.

If you open a file excluded from code inspection, you can recognize it by the corresponding icon ThemedIcon ErrorStripeOff Screen Gray of the status indicator.

Partly disabling code inspection for generated code

You can also configure the list of files, folders, file masks, and regions that contain 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 used by Visual Studio for generated code, e.g. *.designer.cs are included in this list by default, but you can change the default settings if necessary.

To specify files and regions with generated code

  1. On the Editor | Inspection Settings | Generated Code page of JetBrains Rider settings (Ctrl+Alt+S), use the the Add button to specify files or folders that contain generated code.
  2. In the lower left part of the page, use the Add button to specify masks (e.g. *.Designer.cs) for generated code files.
  3. In the lower right part of the page, use the Add button to specify names of the regions that contain generated code.
  4. Click Save to apply the modifications and let JetBrains Rider choose where to save them, or save the modifications to a specific settings layer using the Save To drop-down list. For more information, see layer-based settings.

The list of items containing generated code can also be used for disabling code style and cleanup for generated code.

Changing severity levels of code inspections

Each JetBrains Rider's code inspection has its own default severity level, which is set according to potential impact of code issues that it detects. Most of the inspections have configurable severity level, which you can change.

Note that inspections that detect compiler errors and warnings have corresponding severity levels, which cannot be changed. However, with some compiler warnings, you can use #pragma directives to suppress them. Look for the suppress with #pragma action in the action list upon a specific warning.

You can change severity level of an inspection right from the editor, where a code issue found by this inspection is highlighted.

To change inspection severity from the editor

  1. Set the caret to a code issue highlighted by a JetBrains Rider's inspection.
  2. Press Alt+Enter or click on the action indicator to the left of the caret to open the action list.
  3. In the action list, choose Inspection [name of inspection] | Configure inspection severity and then select a new severity level:
    Changing inspection severity level
  4. Your change will be saved using the smart save logic.
  5. If you need to save the modified severity level in a shared settings layer, click on the Configure inspection severity menu item or press Enter when it is selected. In the dialog that appears, choose the desired severity level, click Save To and then choose the desired settings layer.
    Inspection Options dialog

Another way to save the modified severity level in a shared settings layer, or modifying severity levels of multiple inspections is using the JetBrains Rider Settings dialog (Ctrl+Alt+S) as described below.

To modify severity levels of code inspections from settings

  1. On the Editor | Inspection Severity page of JetBrains Rider settings (Ctrl+Alt+S), you can view all configurable code inspections and their severity levels. The inspections are grouped by languages and then by categories.
  2. Find and select the inspection whose severity you want to modify.
  3. Click the drop-down list to the right of the selected entry, and choose a desired severity level:
    Changing inspection severity in the JetBrains Rider Options dialog
  4. If the default severity level of an inspection is changed, you will see the Reset to default ThemedIcon Undo Screen Gray button next to it, which allows you to reset the severity to its default value.
    The same button also appears next to the category where such inspection belongs, Clicking this button next to a category will reset all inspections inside the category to their default severity levels.
  5. Click Save to apply the modifications and let JetBrains Rider choose where to save them, or save the modifications to a specific settings layer using the Save To drop-down list. For more information, see layer-based settings.

Disabling/enabling specific code inspections

If some code inspection seems trivial or being of no interest to you, you can disable this inspection so that no relevant issues would be highlighted in the editor or detected when you run code inspection is specific scope. You can enable a disabled code inspection any time later. Some inspections are disabled by default and you can enable them if necessary.

You can disable any code inspection in one of the following ways:

  • If there is a code issue highlighted by this inspection in the editor, set the caret on the highlighted code, press Alt+Enter and then choose Inspection [name of inspection] | Configure inspection severity | Do not show.
  • On the Editor | Inspection Severity page of JetBrains Rider settings (Ctrl+Alt+S), use the search box to find the inspection you want to disable or enable, and then use the checkbox next to it.

The disabled/enabled state of inspections is saved in the shared settings layers, exactly the same way as changes to severity levels.

Using EditorConfig to configure code inspections

If you use EditorConfig to maintain code styles for your project, you can also configure code inspections from .editorconfig files.

To configure code inspections from EditorConfig, you have to select the Read settings from editorconfig... checkbox on the Editor | Inspection Settings page of JetBrains Rider settings (Ctrl+Alt+S).

As EditorConfig convention suggests, JetBrains Rider will apply inspection settings defined in files named .editorconfig in the directory of the current file and in all its parent directories until it reaches the root filepath or finds an EditorConfig file with root=true. File masks specified in .editorconfig files, e.g. *Test.cs are also taken into account.

Inspection settings in .editorconfig files are configured similarly to other properties — by adding the corresponding line:
[inspection_editorconfig_property]=[error | warning | suggestion | hint | do_not_show].
For example, you can change the severity level of the Possible 'System.NullReferenceException' inspection to Error with the following line:
resharper_possible_null_reference_exception_highlighting=error.

You can find EditorConfig property for each inspection on pages in the Code Inspection Index section as well as on the Index of EditorConfig properties page. — just use the browser search to find the property for the desired inspection.

Suppressing code inspections in specific scope

One way to ignore specific code issues is to disable the corresponding code inspection. In this case, all code issues detected by this inspection will be ignored everywhere.
Sometimes you may need to suppress a specific inspection in a specific place, while continue to detect other similar issues with this inspection in other places.
For example, JetBrains Rider considers some code to be 'dead' and you can see that it is true. The inspection is helpful and you do not want to disable it. However, you may want to use this code later and do not want it to be highlighted in the editor or appear in the inspection results. To do so, JetBrains Rider allows you to suppress inspections with comments or with attributes. Comments are more convenient for arbitrary pieces of code, attributes are preferable to suppress inspections in whole methods or types.

To suppress code inspection in specific scope

  1. Set the caret to a code issue highlighted by a JetBrains Rider's inspection.
  2. Press Alt+Enter or click on the action indicator to the left of the caret to open the action list.
  3. In the action list, choose one of the following:
    • Inspection [name of inspection] | Disable once with comment - this option inserts a single comment - ReSharper disable once [inspection id] - which only suppresses the inspection for the first occurrence of the corresponding issue.
    • Inspection [name of inspection] | Disable once with comment | Disable in file with comment - this option inserts a single comment - ReSharper disable [inspection id] in the beginning of the file. This comment suppresses the inspection for all corresponding issues in the file.
    • Inspection [name of inspection] | Disable once with comment | Disable and restore with comment - this option inserts a pair of comments before and after the issue - ReSharper disable [inspection id] and ReSharper restore [inspection id]. These comments suppress the inspection for all corresponding issues between them.
      You can then move these comments to other places in the file so that several issues of this type are suppressed. For example, this can be useful to suppress the 'redundant namespace' inspection if you want to keep several unused namespace imports.
    • Inspection [name of inspection] | Disable once with comment | Disable for method - this option adds the following attribute to the method: [SuppressMessage("ReSharper", "[inspection id]")]. This attribute suppresses the inspection in the method.
    • Inspection [name of inspection] | Disable once with comment | Disable for class - this option adds the following attribute to the class: [SuppressMessage("ReSharper", "[inspection id]")]. This attribute suppresses the inspection in the whole class.
    • Inspection [name of inspection] | Disable once with comment | Disable all inspection in file - this option inserts a single comment - ReSharper disable All in the beginning of the file. This comment suppresses all inspections the file.
      If necessary, you can insert the ReSharper restore All to enable code inspections after a specific line.

To suppress all inspections in a type or a method, add the following attribute: [SuppressMessage("ReSharper", "All")].

Last modified: 20 August 2018

See Also