Sha256: 3bf0ae000183db6accd07a43802089361a402c33603f26466d86ca2018d0cad1

Contents?: true

Size: 1.65 KB

Versions: 24

Compression:

Stored size: 1.65 KB

Contents

# function-whitespace-after

Require or disallow whitespace after functions.

<!-- prettier-ignore -->
```css
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.

The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.

## Options

`string`: `"always"|"never"`

### `"always"`

There _must always_ be whitespace after the function.

The following patterns are considered violations:

<!-- prettier-ignore -->
```css
a { transform: translate(1, 1)scale(3); }
```

The following patterns are _not_ considered violations:

<!-- prettier-ignore -->
```css
a { transform: translate(1, 1) scale(3); }
```

<!-- prettier-ignore -->
```css
a { transform: translate(1, 1)     scale(3); }
```

<!-- prettier-ignore -->
```css
a {
  transform:
    translate(1, 1)
    scale(3);
}
```

<!-- prettier-ignore -->
```css
/* notice the two closing parentheses without a space between */
a { top: calc(1 * (1 + 3)); }
```

<!-- prettier-ignore -->
```css
/* notice the ), with no space after the closing parenthesis */
a { padding: calc(1 * 2px), calc(2 * 5px); }
```

### `"never"`

There _must never_ be whitespace after the function.

The following patterns are considered violations:

<!-- prettier-ignore -->
```css
a { transform: translate(1, 1) scale(3); }
```

The following patterns are _not_ considered violations:

<!-- prettier-ignore -->
```css
a { transform: translate(1, 1)scale(3); }
```

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
trusty-cms-6.3.1 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-5.0.7 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-5.0.6 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-5.0.5 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-5.0.4 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-5.0.3 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-5.0.2 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-5.0.1 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-4.3.5 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-5.0.0 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-4.3.4 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-4.3.3 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-4.3.2 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-4.3.1 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-4.3 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-4.2.3 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-4.2.2 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-4.2.1 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-4.2 node_modules/stylelint/lib/rules/function-whitespace-after/README.md
trusty-cms-4.1.9 node_modules/stylelint/lib/rules/function-whitespace-after/README.md