Skip to content

Commit

Permalink
stylelint: Allow v-deep pseudo selector
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk committed Jul 26, 2020
1 parent 5e5ab68 commit b248d49
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
"extends": "stylelint-config-standard",
"rules": {
"at-rule-no-unknown": null,
"no-descending-specificity": null
"no-descending-specificity": null,
"selector-pseudo-element-no-unknown": [
true,
{ "ignorePseudoElements": ["v-deep"] }
]
}
}

1 comment on commit b248d49

@mradkov
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.