You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes the argument list when calling functions/mixins ends up being quite long so it is nice to put them onto multiple lines to make it them more readable. However currently this throws a combination of warnings - two space-between-parens (one for the opening paren, one for the closing paren) and an indentation warning for every line within the arguments. This occurs for native CSS functions (e.g. linear-gradient()), user-defined functions and mixins. To see this in action, run the following scss with the ruleset {'indentation': 1, 'space-between-parens': 1}:
Sometimes the argument list when calling functions/mixins ends up being quite long so it is nice to put them onto multiple lines to make it them more readable. However currently this throws a combination of warnings - two
space-between-parens
(one for the opening paren, one for the closing paren) and anindentation
warning for every line within the arguments. This occurs for native CSS functions (e.g. linear-gradient()), user-defined functions and mixins. To see this in action, run the following scss with the ruleset{'indentation': 1, 'space-between-parens': 1}
:I would expect this to raise no warnings.
The text was updated successfully, but these errors were encountered: