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, + } }