CLion 2020.1 Help

Disabling and Enabling Inspections

Some inspections may report problems that you currently do not want to see. In this case, you can disable or suppress them.

When you disable an inspection, you turn it off. It means that the code analysis engine stops searching project files for the problem that this inspection is designed to detect. Note that when you disable an inspection, you disable it in the current inspection profile; it remains enabled in other profiles.

Disable inspections

Disable an inspection in the settings

  1. In the Settings/Preferences dialog Ctrl+Alt+S, select Editor | Inspections.

  2. Locate the inspection you want to disable, and clear the checkbox next to it.

    Enable inspection

  3. Apply the changes and close the dialog.

Disable an inspection in the editor

  1. Place the caret at the highlighted string and press Alt+Enter (or click the Intention action icon to use the intention action).

  2. Click the right arrow icon next to the inspection you want to disable, and select Disable inspection.

    Disable inspection

Disable an inspection in the Results tool window

  1. In the Inspection Results tool window (after running code analysis), right-click the inspection you want to disable and select Disable inspection.

  2. Click the Filter resolved items icon to hide the disabled inspection alerts.

Suppress inspections

When you suppress an inspection, the code analysis engine doesn't highlight the problem found by this inspection in the specific piece of code (file, statement, function, or line).

Suppress an inspection in the editor

  1. Place the caret at the highlighted string and press Alt+Enter (or click the Intention action icon to use the intention action).

  2. Click the right arrow icon next to the inspection you want to suppress, and select the necessary suppress action.

    Suppress inspection in the editor

You can also suppress inspections from the Results tool window.

For C/C++ code, CLion uses the #pragma clang diagnostic to suppress inspections. For example, when you suppress one of the Clang-Tidy inspections, modernize-avoid-bind, for a selected function, the following code appears above and below the declaration:

Suppressing an inspection for a function

Clang-Tidy inspections have the additional Suppress for line option, which adds the // NOLINT comment, forcing Clang-Tidy to ignore the current line:

Suppressing an inspection for a lilne

To re-enable a suppressed inspection, delete the #pragma lines or // NOLINT comments.

Change the highlighting level for a file

  • By default, CLion highlights all detected code problems. You can change this behavior for the file you are currently working with. Click the Hector icon in the status bar (bottom right-hand corner), and select one of these options:

    • highlighting is off None: turn highlighting off.

    • highlight syntax Syntax: highlight syntax problems only.

    • highlighting is on Inspections: (default) highlight syntax problems and problems found by inspections.

  • You can also change the highlighting level from the main menu. Select Code | Configure Current File Analysis or press Ctrl+Alt+Shift+H.

Last modified: 16 July 2020