We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given this Sass:
// Find the next index. $index: str-index( if($case-sensitive, $to-parse, to-lower-case($to-parse)), if($case-sensitive, $to-search, to-lower-case($to-search)) );
stylelint-config-chromatix reports that whitespace is not expected inside the parens, and that a single space is expected after the comma.
stylelint-config-chromatix
function-parentheses-space-inside should exclude newlines, and function-comma-space-after should allow newlines.
function-parentheses-space-inside
function-comma-space-after
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given this Sass:
stylelint-config-chromatix
reports that whitespace is not expected inside the parens, and that a single space is expected after the comma.function-parentheses-space-inside
should exclude newlines, andfunction-comma-space-after
should allow newlines.The text was updated successfully, but these errors were encountered: