Skip to content

Commit

Permalink
fix(eslint-plugin-experience): update filter
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Nov 4, 2023
1 parent fe2c68a commit 510ca3a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const IGNORE = 'CVC|axisX|axisY|API|HTML|DOM|URI|URL|JSON|CSS|HTML';

module.exports = {
overrides: [
{
Expand Down Expand Up @@ -82,7 +84,7 @@ module.exports = {
},
{
selector: 'classMethod',
filter: 'API|HTML|CSS|TS|JSON|CVC|CVCChange|URI|URL|DOM',
filter: IGNORE,
format: null,
},
{
Expand All @@ -91,7 +93,7 @@ module.exports = {
},
{
selector: 'classProperty',
filter: 'CVC|axisX|axisY|API|HTML',
filter: IGNORE,
format: null,
},
],
Expand Down

0 comments on commit 510ca3a

Please sign in to comment.