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