From fcbfad33a8e8fdb671d2907b55a8074df9a558e6 Mon Sep 17 00:00:00 2001 From: Martin Kagamino Lehoux Date: Sun, 16 Aug 2026 15:22:46 +0200 Subject: chore(web): add Stylelint CSS checks --- stylelint.config.mjs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 stylelint.config.mjs (limited to 'stylelint.config.mjs') diff --git a/stylelint.config.mjs b/stylelint.config.mjs new file mode 100644 index 0000000..249cac1 --- /dev/null +++ b/stylelint.config.mjs @@ -0,0 +1,14 @@ +export default { + extends: ["stylelint-config-standard"], + rules: { + "at-rule-empty-line-before": null, + "color-named": "never", + "color-no-hex": true, + "custom-property-empty-line-before": null, + "declaration-block-single-line-max-declarations": null, + "function-disallowed-list": ["rgb", "rgba", "hsl", "hsla"], + "hue-degree-notation": "angle", + "media-feature-range-notation": "context", + "no-descending-specificity": null, + }, +}; -- cgit v1.2.3