diff options
author | Takuya Noguchi <tak.noguchi.iridge@gmail.com> | 2017-07-12 13:59:39 +0900 |
---|---|---|
committer | Takuya Noguchi <tak.noguchi.iridge@gmail.com> | 2017-07-12 14:14:49 +0900 |
commit | bc09ea58d61592867a688dd4d3836e117ab03167 (patch) | |
tree | 54ff120bf80f3ed967c6d1e19cfa8ec514e567ca /.scss-lint.yml | |
parent | 4daa6da5407d235cbe4f7a787eaa29304446a870 (diff) | |
download | gitlab-ce-bc09ea58d61592867a688dd4d3836e117ab03167.tar.gz |
Enable DeclarationOrder in scss-lint
Diffstat (limited to '.scss-lint.yml')
-rw-r--r-- | .scss-lint.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.scss-lint.yml b/.scss-lint.yml index db234ad739c..389682af3dd 100644 --- a/.scss-lint.yml +++ b/.scss-lint.yml @@ -43,10 +43,11 @@ linters: # Rule sets should be ordered as follows: # - @extend declarations # - @include declarations without inner @content - # - properties, @include declarations with inner @content + # - properties + # - @include declarations with inner @content # - nested rule sets. DeclarationOrder: - enabled: false + enabled: true # `scss-lint:disable` control comments should be preceded by a comment # explaining why these linters are being disabled for this file. |