Skip to content

Commit

Permalink
Ignore Custom Elements in selector-type-no-unknown (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
tysongach committed Apr 24, 2021
1 parent e46579a commit f9f8c84
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@ module.exports = {
'property-no-unknown': true,
'selector-pseudo-class-no-unknown': true,
'selector-pseudo-element-no-unknown': true,
'selector-type-no-unknown': true,
'selector-type-no-unknown': [
true,
{
ignore: ['custom-elements'],
},
],
'string-no-newline': true,
'unit-no-unknown': true,
},
Expand Down

0 comments on commit f9f8c84

Please sign in to comment.