-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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] no-namespace
: Add ignore
option
#2112
[New] no-namespace
: Add ignore
option
#2112
Conversation
Closes import-js#1916. Closes import-js#1903.
Hi @aberezkin, any updates on that ? Have the same problem with this rule. |
Hi @gairon. I would be happy to provide some update but I can't merge it myself since I'm not a maintainer 😄 |
Who else can help with verifying and pushing a really cool feature? |
7e191f5
to
94ab4d5
Compare
@ljharb Fixed! :) |
no-namespace
: Add ignore
option
982c0ee
to
bba59c4
Compare
Hi @aberezkin, |
Closes #1916
Closes #1903
Hi, we want to use the rule
no-namespace
in our project but we have ai18n
codegen tool that forces us to use wildcard imports for certain files that follow some pattern (\S+\.i18n
, to be precise). Also I've seen that there's people with similar issue.I thought that we can implement something similar to
argsIgnorePattern/varsIgnorePattern
in core eslint rules.I made a test for that case and updated the docs as well. Please let me know if there's something else I should do to get this merged.