diff options
author | Clement Ho <ClemMakesApps@gmail.com> | 2016-10-14 15:39:08 -0500 |
---|---|---|
committer | Clement Ho <ClemMakesApps@gmail.com> | 2016-10-14 16:28:10 -0500 |
commit | e88aa25f42c394785d4c176046f10c815250c8b1 (patch) | |
tree | 2e4b4d29176a98687397eed7d7a2b4373b34c26a /.scss-lint.yml | |
parent | 2ebc63dd3ce08ff35bf89d39e1906ce1cf828b3a (diff) | |
download | gitlab-ce-e88aa25f42c394785d4c176046f10c815250c8b1.tar.gz |
Enforce TrailingSemicolon and EmptyLineBetweenBlocks in scss-lint23319-enable-trailingsemicolon-on-scss-lint
Diffstat (limited to '.scss-lint.yml')
-rw-r--r-- | .scss-lint.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.scss-lint.yml b/.scss-lint.yml index 71df6be6a15..5093702519b 100644 --- a/.scss-lint.yml +++ b/.scss-lint.yml @@ -61,7 +61,7 @@ linters: # Separate rule, function, and mixin declarations with empty lines. EmptyLineBetweenBlocks: - enabled: false + enabled: true # Reports when you have an empty rule set. EmptyRule: @@ -219,7 +219,7 @@ linters: # Property values, @extend, @include, and @import directives, and variable # declarations should always end with a semicolon. TrailingSemicolon: - enabled: false + enabled: true # Reports lines containing trailing whitespace. TrailingWhitespace: |