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

Require Dot Notation Whenever Possible (dot-notation) #1344

Open
julien-f opened this issue Feb 18, 2019 · 13 comments
Open

Require Dot Notation Whenever Possible (dot-notation) #1344

julien-f opened this issue Feb 18, 2019 · 13 comments

Comments

@julien-f
Copy link

Hey folks, what do you think about enabling the dot-notation rule?

@LinusU
Copy link
Member

LinusU commented Feb 19, 2019

Generally positive, although I prefer using the [...] syntax when I have an object that's being used as a map. Now, in most modern code it would just be a Map instance and I wouldn't have this problem, but process.env comes to mind as somewhere were this would annoy me 🤔

@brodybits
Copy link
Contributor

process.env comes to mind as somewhere were this would annoy me

Couldn’t we solve this by using a utility such as process-env to access the process.env members in a more flexible manner?

And couldn’t we use a similar wrapper solution in other cases someone needs […] member access?

I suspect minor efficiency cost should not prove to be a real issue given the improved readability in what seem to be exceptional cases.

@brodybits
Copy link
Contributor

I would love to see this considered for Standard 14 (#1321).

@feross feross transferred this issue from standard/eslint-config-standard Jul 28, 2019
@feross
Copy link
Member

feross commented Jul 28, 2019

Modest ecosystem impact:

1..162
# tests 162
# pass  153
# fail  9

And they're all cases where dot notation would be a bit better. Since the rule is automatically fixable, I think this rule is a go for standard v14.

@feross feross added this to the standard v14 milestone Jul 28, 2019
feross added a commit to standard/standard-packages that referenced this issue Jul 28, 2019
@feross feross changed the title Favor dot notation for property access Require Dot Notation Whenever Possible (dot-notation) Jul 28, 2019
@feross
Copy link
Member

feross commented Jul 28, 2019

After fixing repos I control, only 3 ecosystem repos fail.

  • electron-spawn
  • cliui
  • application-config-path

@feross feross closed this as completed in 5e3161b Jul 28, 2019
@LinusU
Copy link
Member

LinusU commented Jul 29, 2019

application-config-path is mine, I can fix it 👍

Funnily enough, it's exactly the case I described in my first comment and I actually think that the code will be a bit uglier 😬

Oh well, it's for the greater good 🚀

@feross
Copy link
Member

feross commented Jul 29, 2019

Yeah, I actually agree with you. There's a small amount information that it feels like we're losing by always using dot notation. I noticed when I went through all the failing cases that I was using [] consistently in very specific situations like HTTP headers: res.headers['accept']. It's hard to put into words why this way feels better than dot notation for these certain cases, but it does.

Happy to reconsider this if we end up not liking it. But it's only required changes in a few places so I'm guessing it won't be that big of a deal :)

@LinusU
Copy link
Member

LinusU commented Jul 29, 2019

[...] using the [...] syntax when I have an object that's being used as a map.

I think this is what does it for me. JavaScript doesn't really have a distinction between objects with specific properties, and just general maps/dictionaries (or, it has now Map, but many APIs came before that. You can see this clearly with TypeScript typing: process.env and res.headers are described as Record<string, ...> whereas objects have there specific keys described.

It would be awesome if it could somehow be enforced that process.env, req.headers, etc. always have [...] notation, but I think that's impossible 😄

@vweevers
Copy link
Contributor

It's hard to put into words why this way feels better than dot notation for these certain cases, but it does.

In the case of headers, it feels better because you may have (or later add) headers that do require [...] syntax. For visual consistency, I prefer:

headers['user-agent'] = 'example'
headers['connection'] = 'keep-alive'
headers['accept-encoding'] = 'gzip, deflate, identity'

Over:

headers['user-agent'] = 'example'
headers.connection = 'keep-alive'
headers['accept-encoding'] = 'gzip, deflate, identity'

@mightyiam
Copy link
Member

Perhaps I would write that way, as well, @vweevers. If you could contribute that as an option to the ESLint rule, then we'd have the option to consider it. I personally feel that it would be better to choose a not-always pleasing style over not choosing.

@jimmywarting
Copy link
Contributor

jimmywarting commented Aug 27, 2019

crap, now i must override this rule where i use closure compiler in advance mode

applies to when i want to keep something that should be exported as it's named

function displayNoteTitle(note) {
  alert(note['myTitle'])
}
// Store the function in a global property referenced by a string:
window['displayNoteTitle'] = displayNoteTitle

didn't like this addition.
ppl mostly use dot notation anyways? if not then they have a reason for it.

  • consistency in stuff like headers and process.env
  • closure compiler (also applies to Uglify, i think?)

Getting more and more tiered of linters that is strict about formatting. hence why i don't use them so much any longer.
all i want is a linter that can only spot errors, (telling me if i missed a variable declaration, if i reassigning const variables etc) not tell me how i should format my code or what i can or can't use 😞
can anyone recommend such linter to me?

Actually thinking of removing standard from my package now.
this was the straw that broke the camel's back...

@feross
Copy link
Member

feross commented Sep 6, 2019

@mightyiam I personally feel that it would be better to choose a not-always pleasing style over not choosing.

I generally feel this way too.

@jimmywarting ppl mostly use dot notation anyways? if not then they have a reason for it.

In general, this is probably true. The ecosystem impact of this change was low.

now i must override this rule where i use closure compiler in advance mode

I didn't realize that Closure Compiler was still a popular compiler. Does anyone else use Closure and is affected by this change?

all i want is a linter that can only spot errors

You could try doing using eslint-config-standard and eslint-config-prettier (which disables style-related rules)

@feross
Copy link
Member

feross commented Sep 6, 2019

I'll re-open this issue for a little while to give it visibility. If others have issues with this rule, we can reconsider it for the next minor version.

@feross feross modified the milestones: standard 14, standard 15 Sep 6, 2019
@feross feross reopened this Sep 6, 2019
@feross feross modified the milestones: standard 15, standard 16 Oct 22, 2020
@feross feross modified the milestones: standard 16, standard 17 Oct 29, 2020
suchitg8 pushed a commit to suchitg8/standard that referenced this issue Apr 9, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: No status
Development

No branches or pull requests

7 participants