Skip to content

Inconsistent semicolon usage in examples (Arrays vs Functions) #3152

@shuhaki

Description

@shuhaki

Description

(Readme.md)
I noticed an inconsistency in semicolon usage across different sections of the style guide.

  • In the Arrays section (4.1–4.8), many examples omit semicolons at the end of statements.
  • In the Functions section (7.1–7.7), the examples consistently use semicolons.

Since the Airbnb style guide explicitly recommends always using semicolons (see Section 21: Semicolons), this inconsistency might confuse developers who are following the guide.


Proposed Fix
Ensure that all code examples across the style guide consistently include semicolons at the end of statements.

For example:

// Current (Arrays section):
const items = []

// Suggested fix:
const items = [];

I’d be happy to work on fixing this if maintainers agree. Could you please assign this issue to me?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions