Skip to content

Files

Latest commit

 

History

History
122 lines (91 loc) · 1.54 KB

function-parentheses-newline-inside.md

File metadata and controls

122 lines (91 loc) · 1.54 KB

Pattern: Malformed newline in function parentheses

Issue: -

Description

Require a newline or disallow whitespace on the inside of the parentheses of functions.

Examples

"always"

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
  );
}

"always-multi-line"

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
  );
}

"never-multi-line"

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) }

Further Reading