Skip to content

Commit

Permalink
#162 Disabled rules that are incompatible with prettier
Browse files Browse the repository at this point in the history
Disabled the `scss/operator-no-newline-after` and
`scss/operator-no-newline-before` rule
  • Loading branch information
leroykorterink committed Jun 10, 2024
1 parent 0353b88 commit a08ca8e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/stylelint-config-scss/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,11 @@ export default {
* CSS Tools
*/
'csstools/use-nesting': 'always',

/**
* Incompatible with Prettier
*/
'scss/operator-no-newline-after': null,
'scss/operator-no-newline-before': null,
},
};

0 comments on commit a08ca8e

Please sign in to comment.