Pattern: Malformed newline in function parentheses
Issue: -
Require a newline or disallow whitespace on the inside of the parentheses of functions.
There must always be a newline inside the parentheses.
The following patterns are considered violations:
a { transform: translate(1, 1); }
a { transform: translate(1,
1
); }
The following patterns are not considered violations:
a {
transform: translate(
1, 1
);
}
a {
transform: translate(
1,
1
);
}
There must always be a newline inside the parentheses of multi-line functions.
The following patterns are considered violations:
a { transform: translate(1,
1) }
The following patterns are not considered violations:
a { transform: translate(1, 1) }
a { transform: translate( 1, 1 ) }
a {
transform: translate(
1, 1
);
}
a {
transform: translate(
1,
1
);
}
The following patterns are considered violations:
a {
transform: translate(
1, 1
);
}
a {
transform: translate(
1,
1
);
}
The following patterns are not considered violations:
a { transform: translate(1, 1) }
a { transform: translate( 1, 1 ) }
a { transform: translate(1,
1) }