Skip to content
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.

Commit

Permalink
add else to ignore at rule list
Browse files Browse the repository at this point in the history
  • Loading branch information
MrEssex committed Nov 21, 2023
1 parent b44bed0 commit d8cc06c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .stylelintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,19 @@ module.exports = {
ignore: [
'first-nested',
'blockless-after-same-name-blockless',
'after-comment'
'after-comment',
"else"
]
}
],
'order/properties-order': [propertiesOrder, {severity: 'warning', unspecified: 'bottomAlphabetical'}],
'scss/at-rule-no-unknown': null,
'selector-no-qualifying-type': null,
'media-query-no-invalid': null
'media-query-no-invalid': null,
"block-closing-brace-newline-after": [
"always", {
"ignoreAtRules": [ "if", "else" ]
}
],
}
};

0 comments on commit d8cc06c

Please sign in to comment.