1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-12 06:30:49 +00:00
notes/node_modules/stylelint/lib/rules/function-whitespace-after
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00
..
index.js Initial commit 2017-03-09 13:16:08 -05:00
README.md Initial commit 2017-03-09 13:16:08 -05:00

function-whitespace-after

Require or disallow whitespace after functions.

a { transform: translate(1, 1) scale(3); }
/**                           ↑
 *                   This space */

This rule does not check for space immediately after ) if the very next character is ,, ), or }, allowing some of the patterns exemplified below.

Options

string: "always"|"never"

"always"

There must always be whitespace after the function.

The following patterns are considered warnings:

a { transform: translate(1, 1)scale(3); }

The following patterns are not considered warnings:

a { transform: translate(1, 1) scale(3); }
a { transform: translate(1, 1)     scale(3); }
a {
  transform:
    translate(1, 1)
    scale(3);
}
/* notice the two closing parentheses without a space between */
a { top: calc(1 * (1 + 3)); }
/* notice the ), with no space after the closing parenthesis */
a { padding: calc(1 * 2px), calc(2 * 5px); }
/* notice the )}, with no space after the closing parenthesis */
a {
  max-height: #{($line-height) * ($lines-to-show)}em;
}
/* notice the )}, with no space after the closing parenthesis */
a {
  max-height: ((@line-height) * (@lines-to-show))em;
}

"never"

There must never be whitespace after the function.

The following patterns are considered warnings:

a { transform: translate(1, 1) scale(3); }

The following patterns are not considered warnings:

a { transform: translate(1, 1)scale(3); }