Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md « map-keys-quotes « rules « src « stylelint-scss « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 087177ebe9dbde650fb6bcecbb71b302a472079a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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);
```