Skip to content

Latest commit

 

History

History
68 lines (46 loc) · 1000 Bytes

no-extra-semi.md

File metadata and controls

68 lines (46 loc) · 1000 Bytes

disallow unnecessary semicolons (no-extra-semi)

Typing mistakes and misunderstandings about where semicolons are required can lead to semicolons that are unnecessary. While not technically an error, extra semicolons can cause confusion when reading code.

Rule Details

This rule disallows unnecessary semicolons.

Examples of incorrect code for this rule:

/*eslint no-extra-semi: "error"*/

var x = 5;;

function foo() {
    // code
};

class C {
    field;;

    method() {
        // code
    };

    static {
        // code
    };
};

Examples of correct code for this rule:

/*eslint no-extra-semi: "error"*/

var x = 5;

function foo() {
    // code
}

var bar = function() {
    // code
};

class C {
    field;

    method() {
        // code
    }

    static {
        // code
    }
}

When Not To Use It

If you intentionally use extra semicolons then you can disable this rule.

Related Rules