Skip to content

Commit

Permalink
Style(repo): Disable stylelint rule `declaration-block-no-redundant-l…
Browse files Browse the repository at this point in the history
…onghand-properties`

  * it can lead to less readable code
  • Loading branch information
literat committed Oct 23, 2023
1 parent e7b6413 commit 44e9a59
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .stylelintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}

0 comments on commit 44e9a59

Please sign in to comment.