florianschanda / miss_hit

MATLAB Independent, Small & Safe, High Integrity Tools - code formatter and more
GNU General Public License v3.0
162 stars 21 forks source link

whitespace after semicolon #162

Closed florianschanda closed 4 years ago

florianschanda commented 4 years ago

Semicolons should be followed by whitespace, unless of course they are the last thing on a line. E.g:

x = [1;2;3];

Should be:

x = [1; 2; 3];