loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 <beowulf@beocode.eu>

authored by

silverwind and committed by
Beowulf
8f4e6530 a6262a66

+2 -5
+1 -1
stylelint.config.js
··· 141 141 'custom-property-pattern': null, 142 142 'declaration-block-no-duplicate-custom-properties': true, 143 143 'declaration-block-no-duplicate-properties': [true, {ignore: ['consecutive-duplicates-with-different-values']}], 144 - 'declaration-block-no-redundant-longhand-properties': null, 144 + 'declaration-block-no-redundant-longhand-properties': [true, {ignoreShorthands: ['flex-flow', 'overflow']}], 145 145 'declaration-block-no-shorthand-property-overrides': null, 146 146 'declaration-block-single-line-max-declarations': null, 147 147 'declaration-empty-line-before': null,
+1 -4
web_src/css/modules/grid.css
··· 7 7 flex-wrap: wrap; 8 8 align-items: stretch; 9 9 padding: 0; 10 - margin-top: -1rem; 11 - margin-bottom: -1rem; 12 - margin-left: -1rem; 13 - margin-right: -1rem; 10 + margin: -1rem; 14 11 } 15 12 16 13 .ui.relaxed.grid {