From 9952d30c94318b129f7631cee517cfb5e00abca9 Mon Sep 17 00:00:00 2001 From: Claudio Rodriguez Date: Mon, 31 Jul 2017 08:59:59 +0100 Subject: [PATCH] fix: add ignores to at-rule-no-unknown --- stylelintrc.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/stylelintrc.json b/stylelintrc.json index 6e08c60..47efe55 100644 --- a/stylelintrc.json +++ b/stylelintrc.json @@ -1,6 +1,21 @@ { "extends": "stylelint-config-standard", "rules": { + "at-rule-no-unknown": [ + true, + { + "ignoreAtRules": [ + "include", + "extend", + "if", + "content", + "each", + "return", + "mixin", + "function" + ] + } + ], "property-no-unknown": [ true, {