From 5e228d77e710b02cde9211ff2012010ab981bb8c Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Sat, 4 May 2024 14:51:08 +0200 Subject: [PATCH] fix: Remove stylistic rules With stylelint 16 stylistic rules were dropped and we recommended using prettier. But we include the scss plugin which still has stylelistic rules that conflict. So also disable those rules. Signed-off-by: Ferdinand Thiessen --- index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.js b/index.js index 9017ee2..fcb5dc9 100644 --- a/index.js +++ b/index.js @@ -5,6 +5,10 @@ module.exports = { ], ignoreFiles: ['**/*.js', '**/*.ts', '**/*.svg'], rules: { + // Stylistic rules conflicting with prettier + 'scss/operator-no-newline-after': null, + 'scss/operator-no-newline-before': null, + 'selector-type-no-unknown': null, 'rule-empty-line-before': [ 'always',