What minimal example or steps are needed to reproduce the bug?
$colors: (
background: (
primary: #f00
)
);
@function mycolor($id, $ids...) {
@return map.get($colors, $id, $ids...);
}
.some-class {
background-color: mycolor(background, primary);
}
What minimal configuration is needed to reproduce the bug?
{
"extends": [
"stylelint-config-standard-scss"
]
}
How did you run Stylelint?
Which Stylelint-related dependencies are you using?
{
"stylelint": "16.19.1",
"stylelint-config-recess-order": "6.0.0",
"stylelint-config-standard-scss": "15.0.0",
"stylelint-declaration-strict-value": "1.10.11",
"stylelint-webpack-plugin": "5.0.1"
}
What did you expect to happen?
No problems being reported for SCSS function arguments. No auto-fixes applied.
What actually happened?
This warning is emitted:
Expected "background" to be "canvas" declaration-property-value-keyword-no-deprecated
The auto-fixer updates the code to:
.some-class {
background-color: mycolor(canvas, primary);
}
Do you have a proposal to fix the bug?
No response
What minimal example or steps are needed to reproduce the bug?
What minimal configuration is needed to reproduce the bug?
{ "extends": [ "stylelint-config-standard-scss" ] }How did you run Stylelint?
Which Stylelint-related dependencies are you using?
{ "stylelint": "16.19.1", "stylelint-config-recess-order": "6.0.0", "stylelint-config-standard-scss": "15.0.0", "stylelint-declaration-strict-value": "1.10.11", "stylelint-webpack-plugin": "5.0.1" }What did you expect to happen?
No problems being reported for SCSS function arguments. No auto-fixes applied.
What actually happened?
This warning is emitted:
The auto-fixer updates the code to:
Do you have a proposal to fix the bug?
No response