From 8f4e6530201b15936486d0ed007084d2c671bd49 Mon Sep 17 00:00:00 2001 From: silverwind Date: Sun, 12 May 2024 04:33:05 +0200 Subject: Enable `declaration-block-no-redundant-longhand-properties` (#30950) Enable [`declaration-block-no-redundant-longhand-properties`](https://stylelint.io/user-guide/rules/declaration-block-no-redundant-longhand-properties/) and autofix issues. The exclusions are because I find these two shorthands to be harder to read. (cherry picked from commit 46b7004f050bd2fdaf9800794cf2c1e9eeb08d51) Signed-off-by: Beowulf --- stylelint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stylelint.config.js') diff --git a/stylelint.config.js b/stylelint.config.js index 523b18841e..2843a449c0 100644 --- a/stylelint.config.js +++ b/stylelint.config.js @@ -141,7 +141,7 @@ export default { 'custom-property-pattern': null, 'declaration-block-no-duplicate-custom-properties': true, 'declaration-block-no-duplicate-properties': [true, {ignore: ['consecutive-duplicates-with-different-values']}], - 'declaration-block-no-redundant-longhand-properties': null, + 'declaration-block-no-redundant-longhand-properties': [true, {ignoreShorthands: ['flex-flow', 'overflow']}], 'declaration-block-no-shorthand-property-overrides': null, 'declaration-block-single-line-max-declarations': null, 'declaration-empty-line-before': null, -- cgit v1.2.3