From e2e7d87d3725ae3422569a61f5aeaa1ffdfe3d13 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Thu, 29 Feb 2024 23:42:44 +0100 Subject: [PATCH] Add a couple of ignoreTypes, many more to follow --- .stylelintrc.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.stylelintrc.json b/.stylelintrc.json index 7abf64b73..5f92b5761 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -3,6 +3,15 @@ "rules": { "declaration-block-no-redundant-longhand-properties": null, "declaration-block-single-line-max-declarations": null, - "length-zero-no-unit": null + "length-zero-no-unit": null, + + "selector-type-no-unknown": [true, { + "ignoreTypes": [ + "author", + "date", + "description", + "genre" + ] +}] } }