This came up today, whether we want the editor to highlight errors like missing semi-colons. For example the following has a 'missing semi-colon' error which is correct in one sense, but not always the convention in p5 examples.
var blah = function() {
console.log('blah');
}
