Skip to content

Files

Latest commit

 

History

History
36 lines (19 loc) · 407 Bytes

trailing_semicolon.md

File metadata and controls

36 lines (19 loc) · 407 Bytes

Pattern: Trailing ;

Issue: -

Description

Lines should not have trailing semicolons.

Examples of correct code:

let a = 0

Examples of incorrect code:

let a = 0;


let a = 0;
let b = 1


let a = 0;;


let a = 0;    ;;


let a = 0; ; ;

Further Reading