ongr-archive / ongr-strict-standard

[NOT MAINTAINED] Strict PHPCS standard for PSR-2 code based on Squiz standards
MIT License
13 stars 14 forks source link

[v2] Semicolon alone in a line considered as valid #133

Open aistis- opened 9 years ago

aistis- commented 9 years ago

Multiple semicolon on blank line considered as invalid:

// some code

;;

// more code

While single semicolon considered as valid:

// some code

;
;
;

// more code