Pattern: Trailing ;
Issue: -
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↓; ; ;
Pattern: Trailing ;
Issue: -
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↓; ; ;