Disable autofix for declaration-block-no-redundant-longhand-properties
#332
Open
Description
What is the problem you're trying to solve?
We often find autofix bugs for declaration-block-no-redundant-longhand-properties
- Fix
declaration-block-no-redundant-longhand-properties
autofix forborder
stylelint#7609 declaration-block-no-redundant-longhand-properties
is not forwards compatible stylelint#7630declaration-block-no-redundant-longhand-properties
needs to be value type aware stylelint#7631- Fix
declaration-block-no-redundant-longhand-properties
anddeclaration-block-no-shorthand-property-overrides
false negatives fortransition-behavior
stylelint#7917 - Fix
declaration-block-no-redundant-longhand-properties
autofix forgrid-area
property stylelint#7933
Currently, implementing autofix for new properties in this rule is challenging.
What solution would you like to see?
How about disabling autofix for this rule?
stylelint-config-standard/index.js
Line 55 in d319b67
E.g.
'declaration-block-no-redundant-longhand-properties': [true, {disableFix: true}],