From 8a2030759b85e61ebc79884d724f539526e64180 Mon Sep 17 00:00:00 2001 From: Mike Wheaton Date: Sat, 7 May 2016 00:15:05 -0700 Subject: [PATCH] Temporarily allow webkit prefixes and allow overflow-scrolling --- .sass-lint.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.sass-lint.yml b/.sass-lint.yml index 0ae4a075..b1e266aa 100644 --- a/.sass-lint.yml +++ b/.sass-lint.yml @@ -51,14 +51,23 @@ rules: - allow-single-line-rulesets: true - # Don't allow vendor prefixes, except for '-ms-*' so that we can target high contrast mode + # Need to enable these vendor prefixes so that it will allow -ms-high-contrast and -webkit-overflow-scrolling + # Would be best to find a way to exclude only those specific properties, not all prefixed properties no-vendor-prefixes: - 1 - excluded-identifiers: - 'ms' + - 'webkit' # Enforce hex codes to full length hex-length: - 1 - style: long + + # Allow properties that are unrecognized by the linter + no-misspelled-properties: + - 1 + - + extra-properties: + - 'overflow-scrolling'