Skip to content

Files

Latest commit

 

History

History
15 lines (10 loc) · 475 Bytes

whitespace-semicolon.md

File metadata and controls

15 lines (10 loc) · 475 Bytes

Pattern: Misuse of ;

Issue: -

Description

This rule checks for:

  • Missing space after ;
  • Semicolon defining empty statement. Use {} instead.
  • Line containing only semicolon. If this should be an empty statement, use {} instead.
  • Extra space before last ;. If this should be an empty statement, use {} instead.

Further Reading