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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakuya Noguchi <tak.noguchi.iridge@gmail.com>2017-07-12 07:59:39 +0300
committerTakuya Noguchi <tak.noguchi.iridge@gmail.com>2017-07-12 08:14:49 +0300
commitbc09ea58d61592867a688dd4d3836e117ab03167 (patch)
tree54ff120bf80f3ed967c6d1e19cfa8ec514e567ca /.scss-lint.yml
parent4daa6da5407d235cbe4f7a787eaa29304446a870 (diff)
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.