From cd0db11f4564115e6f129e1cf3889edaff5df874 Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Thu, 3 Mar 2022 11:06:49 +0100 Subject: [PATCH] Update stylelint config --- .stylelintrc.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.stylelintrc.yaml b/.stylelintrc.yaml index fc2cc23..e35975a 100644 --- a/.stylelintrc.yaml +++ b/.stylelintrc.yaml @@ -63,3 +63,12 @@ rules: - ignoreInside: [at-rule, nested-at-rule] ignoreInsideAtRules: [if, else, function, each] scss/no-duplicate-mixins: true + + # we have "empty" comments in our license header + scss/comment-no-empty: null + # we make heavy use of globals like darken() and lighten() + scss/no-global-function-names: null + # heavily used + scss/at-extend-no-missing-placeholder: null + # prettier's formatting can violate this + scss/operator-no-newline-after: null