Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set dollar-variable-colon-space-after to always-single-line (#156)
* set dollar-variable-colon-space-after to always-single-line `'scss/dollar-variable-colon-space-after': 'always'` collides with the default formatting of Prettier when the value is broken into several lines. For example, Prettier formats like this: ```css $ratios: 1 1, 2 1, 5 4, 4 3, 3 2, 16 9, 4 5, 3 4, 2 3, 9 16; ``` While the rule set to `always` formats the same like this: ```css $ratios: 1 1, 2 1, 5 4, 4 3, 3 2, 16 9, 4 5, 3 4, 2 3, 9 16; ``` I propose to default to a setting that is compatible with Prettier. * add test case
- Loading branch information