From c02fd889dd5d2f4f73ef27a3475e7fc3199f906e Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 26 Sep 2024 01:53:07 +0200 Subject: [PATCH] Add stylelint config --- .stylelintrc.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .stylelintrc.json diff --git a/.stylelintrc.json b/.stylelintrc.json new file mode 100644 index 0000000..e1f73be --- /dev/null +++ b/.stylelintrc.json @@ -0,0 +1,11 @@ +{ + "extends": ["stylelint-config-standard", "stylelint-config-html/html"], + "rules": { + "at-rule-no-unknown": [ + true, + { + "ignoreAtRules": ["tailwind"] + } + ] + } +}