From a08ca8e92fb22432de88bce9dde9d19e19852f67 Mon Sep 17 00:00:00 2001 From: Leroy Korterink Date: Mon, 10 Jun 2024 12:29:41 +0200 Subject: [PATCH] #162 Disabled rules that are incompatible with prettier Disabled the `scss/operator-no-newline-after` and `scss/operator-no-newline-before` rule --- packages/stylelint-config-scss/index.mjs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/stylelint-config-scss/index.mjs b/packages/stylelint-config-scss/index.mjs index 5c0d569..1aefa69 100644 --- a/packages/stylelint-config-scss/index.mjs +++ b/packages/stylelint-config-scss/index.mjs @@ -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, }, };