summaryrefslogtreecommitdiff
path: root/.scss-lint.yml
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2017-07-12 20:40:26 +0000
committerClement Ho <clemmakesapps@gmail.com>2017-07-12 20:40:26 +0000
commita2961a1cf9622ac41952ec95b920c4d3d421c3df (patch)
tree3d0ace77a9c31f8e7d47cfc0b6870b84f72cf8d1 /.scss-lint.yml
parent04f9552d14e5d6ab3d045df579b68a06e99d2ad1 (diff)
parentbc09ea58d61592867a688dd4d3836e117ab03167 (diff)
downloadgitlab-ce-a2961a1cf9622ac41952ec95b920c4d3d421c3df.tar.gz
Merge branch 'enable-scss-lint-declaration-order' into 'master'
Enable DeclarationOrder in scss-lint See merge request !12805
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 b107cf944d5..73f8d27f78c 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.