From 8742703542560ff092327c6c027c3782f74de317 Mon Sep 17 00:00:00 2001 From: Bauke Date: Sat, 30 Mar 2019 14:00:53 +0100 Subject: [PATCH] chore: stylelint ignore 'include' and 'mixin' @rules --- .stylelintrc.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.stylelintrc.json b/.stylelintrc.json index b3c1c1b..33ed47a 100755 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -4,6 +4,15 @@ "stylelint-scss" ], "rules": { + "at-rule-no-unknown": [ + true, + { + "ignoreAtRules": [ + "include", + "mixin" + ] + } + ], "indentation": 2, "string-quotes": "single", "no-descending-specificity": null