JetBrains Rider 2021.1 Help

Code Inspections in Less

This topic lists all JetBrains Rider code inspections available in Less.

You can toggle specific inspections or change their severity level on the Editor | Inspection Settings | Inspection Severity | Other Languages page of the IDE settings Ctrl+Alt+S.

InspectionDescriptionDefault Severity
Missing import

Reports a reference to a variable or mixin that is declared in another file but this file is not explicitly imported in the current file.


Example:
* { margin: @var-in-other-file; }

Weak Warning Weak warning
Unresolved mixin

Reports a reference to a Less mixin that is not resolved.

Example:

* { .unknown-mixin(); }

Warning Warning
Unresolved variable

Reports a reference to a Less variable that is not resolved.


Example:
* { margin: @unknown-var; }

Warning Warning
Last modified: 16 July 2021