summaryrefslogtreecommitdiff
path: root/.scss-lint.yml
diff options
context:
space:
mode:
authorTakuya Noguchi <tak.noguchi.iridge@gmail.com>2017-07-12 13:59:39 +0900
committerTakuya Noguchi <tak.noguchi.iridge@gmail.com>2017-07-12 14:14:49 +0900
commitbc09ea58d61592867a688dd4d3836e117ab03167 (patch)
tree54ff120bf80f3ed967c6d1e19cfa8ec514e567ca /.scss-lint.yml
parent4daa6da5407d235cbe4f7a787eaa29304446a870 (diff)
downloadgitlab-ce-bc09ea58d61592867a688dd4d3836e117ab03167.tar.gz
Enable DeclarationOrder in scss-lint
Diffstat (limited to '.scss-lint.yml')
-rw-r--r--.scss-lint.yml5
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.