Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 411 Bytes

File metadata and controls

26 lines (18 loc) · 411 Bytes

map-keys-quotes

Require quoted keys in Sass maps.

$test: (Helvetica: 14px, Arial: 25px);
  /**   ↑                ↑
   * These words should be quoted.
   */

Options

always

The following patterns are considered violations:

$test: (Helvetica: 14px, Arial: 25px);

The following patterns are not considered violations:

$test: ("foo": 14px, "bar": 25px);