From d1a99211ea39f27a2adf6f9af9ca5c656d74573e Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 23 Mar 2023 09:19:08 +0200 Subject: [PATCH] Update Stylelint config --- .stylelintrc.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.stylelintrc.json b/.stylelintrc.json index ff262bce8..0be1b2936 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -2,7 +2,14 @@ "extends": [ "stylelint-config-twbs-bootstrap" ], - "rules": { - "scss/selector-no-union-class-name": true - } + "reportInvalidScopeDisables": true, + "reportNeedlessDisables": true, + "overrides": [ + { + "files": "**/*.scss", + "rules": { + "scss/selector-no-union-class-name": true + } + } + ] }