Code Inspections in Less
This topic lists all PhpStorm code inspections available in Less.
You can toggle specific inspections or change their severity level on the Editor | Inspections page of the IDE settings Ctrl+Alt+S.
Inspection | Description | Default Severity |
---|---|---|
Reports a reference to a variable or mixin that is declared in another file, which is not explicitly imported in the current file. Example:
* {
margin: @var-in-other-file;
}
| Weak warning | |
Reports a reference to a Less mixin that is not resolved. Example:
* {
.unknown-mixin();
}
| Warning | |
Reports a reference to a Less variable that is not resolved. Example:
* {
margin: @unknown-var;
}
| Warning |
Last modified: 11 February 2022