Skip to content

Commit

Permalink
fix(eslint-plugin): [naming-convention] fix wrong member of method
Browse files Browse the repository at this point in the history
…and `property` meta selectors (#2856)
  • Loading branch information
uasi committed Dec 8, 2020
1 parent 55eb0cf commit 9a6c362
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -71,11 +71,11 @@ enum MetaSelectors {
method = 0 |
Selectors.classMethod |
Selectors.objectLiteralMethod |
Selectors.typeProperty,
Selectors.typeMethod,
property = 0 |
Selectors.classProperty |
Selectors.objectLiteralProperty |
Selectors.typeMethod,
Selectors.typeProperty,
}
type MetaSelectorsString = keyof typeof MetaSelectors;
type IndividualAndMetaSelectorsString = SelectorsString | MetaSelectorsString;
Expand Down

0 comments on commit 9a6c362

Please sign in to comment.