Skip to content

Commit

Permalink
fix(npm-scripts): ignore angular ng-deep pseudo element
Browse files Browse the repository at this point in the history
  • Loading branch information
bryceosterhaus committed Jul 14, 2023
1 parent 2dcae76 commit 1af7b9a
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@
}
],
"selector-pseudo-class-no-unknown": true,
"selector-pseudo-element-no-unknown": true,
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": ["ng-deep"]
}
],
"selector-type-no-unknown": true,
"shorthand-property-no-redundant-values": true,
"unit-case": "lower",
Expand Down

0 comments on commit 1af7b9a

Please sign in to comment.