From 44e9a59a5bef733cfa2e2353f967070170e5ad56 Mon Sep 17 00:00:00 2001 From: literat Date: Mon, 23 Oct 2023 15:27:38 +0200 Subject: [PATCH] Style(repo): Disable stylelint rule `declaration-block-no-redundant-longhand-properties` * it can lead to less readable code --- .stylelintrc.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.stylelintrc.js b/.stylelintrc.js index 326542a328..98b036061a 100644 --- a/.stylelintrc.js +++ b/.stylelintrc.js @@ -2,5 +2,10 @@ module.exports = { extends: [ '@lmc-eu/stylelint-config', 'stylelint-config-prettier' - ] + ], + rules: { + // This rule can lead to less readable code + // @see: https://github.com/stylelint/stylelint-config-recommended/issues/14 + 'declaration-block-no-redundant-longhand-properties': null, + } }