From 49ec2fd876243282a8297efae6a0151286bf6462 Mon Sep 17 00:00:00 2001 From: Franziska Bath Date: Mon, 9 Sep 2024 16:22:32 +0200 Subject: [PATCH] chore(stylelint): ignore unknown at-rule to fix build error Signed-off-by: Franziska Bath --- stylelint.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stylelint.config.js b/stylelint.config.js index 3be3a7b..7304302 100644 --- a/stylelint.config.js +++ b/stylelint.config.js @@ -1,3 +1,6 @@ module.exports = { extends: 'stylelint-config-recommended-vue', + rules: { + 'at-rule-no-unknown': null, + }, }