From 49fa4e0b6584b3396319079472a630f6faa6a8da Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Wed, 16 Dec 2020 16:39:58 -0500 Subject: [PATCH] Merge pull request #2239 from thornbill/disable-browser-hack-sass Disable browser hack rule for sass files (cherry picked from commit 86b8b55b1aa754c8e550d5d541797e73011161ab) Signed-off-by: Joshua M. Boniface --- .stylelintrc.scss.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.stylelintrc.scss.json b/.stylelintrc.scss.json index 7c5b0dd401..90a8bcac8c 100644 --- a/.stylelintrc.scss.json +++ b/.stylelintrc.scss.json @@ -3,6 +3,7 @@ "plugins": [ "stylelint-scss" ], "rules": { "at-rule-no-unknown": null, - "scss/at-rule-no-unknown": true + "scss/at-rule-no-unknown": true, + "plugin/no-browser-hacks": null } }