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

Consider allowing anonymous function expressions #450

Open
tomek-he-him opened this issue Jul 31, 2015 · 6 comments
Open

Consider allowing anonymous function expressions #450

tomek-he-him opened this issue Jul 31, 2015 · 6 comments

Comments

@tomek-he-him
Copy link

At the moment you forbid unnamed function expressions like function() {}. That’s a good thing.

But when using the new function bind syntax with trine-style libraries, you can’t use arrow functions because they inherit this from the outer scope.

So a good old anonymous function expression:

[my, collection]::map(function() {
  return !!this;
});

…often feels more natural than inventing obscure names:

[my, collection]::map(function justCastToBoolean() {
  return !!this;
});
@hshoff
Copy link
Member

hshoff commented Jul 31, 2015

Makes sense to me 👍

@ljharb
Copy link
Collaborator

ljharb commented Aug 1, 2015

If we used trine, or if function bind syntax was a more advanced proposal than stage zero (which indicates that it is in flux, and shouldn't be relied upon just yet), then I'd agree. However, absent either of those two, it seems like this is a change that you should feel free to fork the guide and make, but not one we should make in the guide directly?

@goatslacker
Copy link
Collaborator

This rule should be added regardless. We currently allow anonymous function expressions if you need this scope to be bound or called.

@ljharb
Copy link
Collaborator

ljharb commented Dec 24, 2015

This rule can't differentiate currently between a function expression that's passed as a callback, and a normal function expression.

If we remove this rule, then we'd be allowing all anonymous functions. Do we want to do that, for the few cases where we have to invent an obscure name? (I ask this having certainly added more than a few sorryButTheThisKeywordIsNeededHere and pleaseDontUseTheThisKeywordInSpecs function names into the airbnb codebase while enabling this rule)

@goatslacker
Copy link
Collaborator

Maybe we should add this to eslint then?

@ljharb
Copy link
Collaborator

ljharb commented Jan 7, 2016

That seems like a good idea.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants