shell bypass 403
GrazzMean Shell
: /home/homesquasz/devprod/Commercial/node_modules/stylelint-scss/src/rules/map-keys-quotes/ [ drwx---r-x ]
# 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);
```