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

Remove claim about semicolons from docs #12944

Merged
merged 1 commit into from Feb 25, 2020

Conversation

Luke-Sikina
Copy link
Contributor

@Luke-Sikina Luke-Sikina commented Feb 20, 2020

Prerequisites checklist

  • I have read the contributing guidelines.
  • The team has reached consensus on the changes proposed in this pull request. If not, I understand that the evaluation process will begin with this pull request and won't be merged until the team has reached consensus.

What is the purpose of this pull request? (put an "X" next to an item)

[x] Documentation update
[ ] Bug fix (template)
[ ] New rule (template)
[ ] Changes an existing rule (template)
[ ] Add autofixing to a rule
[ ] Add a CLI option
[ ] Add something to the core
[ ] Other, please explain:

What changes did you make? (Give an overview)

The documentation claimed that JS is unique among C-like languages in having optional semicolons at the end of statements. This is not true, as Go (Golang) also has optional semicolons and is C-like.

This didn't seem terribly important, so rather than go on a tangent about what languages do or don't require semicolons, I just removed the claim.

Is there anything you'd like reviewers to focus on?

The PR is 1 line, so probably that line.

@jsf-clabot
Copy link

jsf-clabot commented Feb 20, 2020

CLA assistant check
All committers have signed the CLA.

@eslint-deprecated eslint-deprecated bot added the triage An ESLint team member will look at this issue soon label Feb 20, 2020
The documentation claimed that JS is unique among
C-like languages in having optional semicolons at
the end of statements. This is not true, as Go (Golang)
also has optional semicolons and is C-like.

This didn't seem terribly important, so rather than
go on a tangent about what languages do or don't require
semicolons, I just removed the claim.
@kaicataldo kaicataldo added documentation Relates to ESLint's documentation and removed triage An ESLint team member will look at this issue soon labels Feb 20, 2020
Copy link
Member

@kaicataldo kaicataldo left a comment

Choose a reason for hiding this comment

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

This LGTM. I'm not sure why the CLA bot didn't update the comment - the check seems to have passed.

@@ -1,6 +1,6 @@
# require or disallow semicolons instead of ASI (semi)

JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as **automatic semicolon insertion (ASI)** and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:
JavaScript doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as **automatic semicolon insertion (ASI)** and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:
Copy link
Sponsor Contributor

Choose a reason for hiding this comment

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

Personally, I'd prefer to phrase it as

Suggested change
JavaScript doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as **automatic semicolon insertion (ASI)** and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:
JavaScript requires semicolons so much that it will insert one for you if you omit it, wherever it can determine that a semicolon should be. This feature is known as **automatic semicolon insertion (ASI)** and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

:-p

@nzakas nzakas merged commit 05380e6 into eslint:master Feb 25, 2020
montmanu pushed a commit to montmanu/eslint that referenced this pull request Mar 4, 2020
The documentation claimed that JS is unique among
C-like languages in having optional semicolons at
the end of statements. This is not true, as Go (Golang)
also has optional semicolons and is C-like.

This didn't seem terribly important, so rather than
go on a tangent about what languages do or don't require
semicolons, I just removed the claim.
@eslint-deprecated eslint-deprecated bot locked and limited conversation to collaborators Aug 25, 2020
@eslint-deprecated eslint-deprecated bot added the archived due to age This issue has been archived; please open a new issue for any further discussion label Aug 25, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
archived due to age This issue has been archived; please open a new issue for any further discussion documentation Relates to ESLint's documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants