We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Now we can's use snippets like this
[1, 2, 3, 4].filter(function(el, i){ return i % 2; });
without lint error, and we must disable eslint or do this hack
[1, 2, 3, 4].filter(function(_el, i){ return i % 2; });
I propose add option of no-unused-vars``args: after-used config. I will resolve the problem.
no-unused-vars``args: after-used config
The text was updated successfully, but these errors were encountered:
12eb25a
Merge pull request #32 from dihar/fix-no-unused-vars
a949863
fixes #31
No branches or pull requests
Now we can's use snippets like this
without lint error, and we must disable eslint or do this hack
I propose add option of
no-unused-vars``args: after-used config
. I will resolve the problem.The text was updated successfully, but these errors were encountered: