Require quoted keys in Sass maps.
$test: (Helvetica: 14px, Arial: 25px);
/** ↑ ↑
* These words should be quoted.
*/
The following patterns are considered violations:
$test: (Helvetica: 14px, Arial: 25px);
The following patterns are not considered violations:
$test: ("foo": 14px, "bar": 25px);