UNPKG

stylelint-scss

Version:

A collection of SCSS specific rules for stylelint

27 lines (18 loc) 411 B
# map-keys-quotes Require quoted keys in Sass maps. ```scss $test: (Helvetica: 14px, Arial: 25px); /** ↑ ↑ * These words should be quoted. */ ``` ## Options ### `always` The following patterns are considered violations: ```scss $test: (Helvetica: 14px, Arial: 25px); ``` The following patterns are _not_ considered violations: ```scss $test: ("foo": 14px, "bar": 25px); ```