Sha256: fa8d55d0d34256686276a25765951ae7b19ef400232b0ca573fe875398a6b649

Contents?: true

Size: 658 Bytes

Versions: 24

Compression:

Stored size: 658 Bytes

Contents

# function-unquote-no-unquoted-strings-inside

Disallow unquoted strings inside the [unquote function](https://sass-lang.com/documentation/modules/string#unquote)

```scss
p {
  font-family: unquote(Helvetica);
  /**          ↑     ↑
   * This function call is unnecessary
   */
}
```

## Options

### `true`

The following patterns are considered violations:

```scss
a {
  font-family: unquote(Helvetica);
}
```

```scss
$font: Helvetica;
p {
  font-family: unquote($font);
}
```

The following patterns are _not_ considered violations:

```scss
a {
  color: unquote("blue");
}
```

```scss
$font: "Helvetica";
p {
  font-family: unquote($font);
}
```

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
trusty-cms-6.3.1 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-5.0.7 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-5.0.6 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-5.0.5 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-5.0.4 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-5.0.3 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-5.0.2 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-5.0.1 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-4.3.5 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-5.0.0 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-4.3.4 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-4.3.3 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-4.3.2 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-4.3.1 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-4.3 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-4.2.3 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-4.2.2 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-4.2.1 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-4.2 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md
trusty-cms-4.1.9 node_modules/stylelint-scss/src/rules/function-unquote-no-unquoted-strings-inside/README.md