Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[New] jsx-pascal-case: support glob ignore option #2906

Merged
merged 1 commit into from Jan 25, 2021

Conversation

bcherny
Copy link

@bcherny bcherny commented Jan 23, 2021

Fixes #2905.

Note: This will potentially relax existing ignores:

  • Before, ignoreonly checked exact matches
  • After, ignore checks partial matches as well

I think this is fine, since it mirrors ESLint's behavior for the camelcase rule. If we prefer to be extra careful, I can make this a new option (eg. ignoreRegex).

@bcherny bcherny changed the title [Fix] jsx-pascal-case: support regex allow option [Fix] jsx-pascal-case: support regex ignore option Jan 23, 2021
Copy link
Member

@ljharb ljharb left a comment

Choose a reason for hiding this comment

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

While It's impressive you found what I believe is the only option in eslint core that accepts regex, it's very dangerous to do new RegExp from user-supplied values, and we won't be supporting any regex options here. It would be reasonable to support globs instead, however.

As to this rule specifically, I'd love to understand the use case a bit more - why do you need "deprecated" to be in the name on the consuming side? import { Foo_DEPRECATED as Foo }, for example, works fine.

@bcherny
Copy link
Author

bcherny commented Jan 25, 2021

Updated per convo in #2905

Copy link
Member

@ljharb ljharb left a comment

Choose a reason for hiding this comment

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

Seems straightforward now, thanks!

docs/rules/jsx-pascal-case.md Outdated Show resolved Hide resolved
@ljharb ljharb force-pushed the master branch 2 times, most recently from e66c119 to 4881bae Compare January 25, 2021 19:03
@ljharb ljharb merged commit 4881bae into jsx-eslint:master Jan 25, 2021
@ljharb ljharb changed the title [Fix] jsx-pascal-case: support regex ignore option [New] jsx-pascal-case: support regex ignore option Jan 25, 2021
@ljharb ljharb changed the title [New] jsx-pascal-case: support regex ignore option [New] jsx-pascal-case: support glob ignore option Jan 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

Feature request: [jsx-pascal-case] Support regex/glob match
2 participants