For some reason SCSS doesn't process native CSS variable values if the variable name is not interpolated. ``` --variable-name: $variable-value; ``` should be written like this: ``` #{--variable-name}: $variable-value; ``` https://github.com/sasstools/sass-lint/issues/877