Skip to content

Commit

Permalink
build(stylelint): tweak stylelint settings
Browse files Browse the repository at this point in the history
Disable a few rules that should not apply to this repo
  • Loading branch information
blyedev committed Dec 19, 2024
1 parent e68e619 commit bdb5ba8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .stylelintrc.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ export default {
rules: {
'no-empty-source': null,
'no-descending-specificity': null,
'selector-type-no-unknown': null, // stylelint doesn't recognize angular components
'scss/comment-no-empty': null, // allow for double slash multiline comments
'scss/load-no-partial-leading-underscore': null, // this project uses underscored files
'scss/operator-no-newline-after': null, // prettier conficts with this rule
'selector-pseudo-element-no-unknown': [
true,
{
Expand Down

0 comments on commit bdb5ba8

Please sign in to comment.