Remove SCSS rules for short hex chars.

This commit is contained in:
Jacob Schatz 2016-10-03 20:40:22 -04:00
parent ffdc854d57
commit d96a89f3b7
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
"always-semicolon": true,
"color-case": "lower",
"block-indent": " ",
"color-shorthand": true,
"color-shorthand": false,
"element-case": "lower",
"space-before-colon": "",
"space-after-colon": " ",

View file

@ -79,7 +79,7 @@ linters:
# HEX colors should use three-character values where possible.
HexLength:
enabled: true
enabled: false
# HEX color values should use lower-case colors to differentiate between
# letters and numbers, e.g. `#E3E3E3` vs. `#e3e3e3`.