standard / semistandard

:icecream: All the goodness of `standard/standard` with semicolons sprinkled on top.
MIT License
1.41k stars 123 forks source link

"Missing semicolon" errors by default on 8.0.0? #121

Closed sbromberger closed 8 years ago

sbromberger commented 8 years ago

Running a fresh install of 8.0.0 on the following:

const Foo = 123
Foo + 454

Getting the following output:

$ semistandard --version && semistandard
8.0.0
semistandard: Semicolons For All! (https://github.com/Flet/semistandard)
  /Users/me/dev/test/test.js:1:16: Missing semicolon.
  /Users/me/dev/test/test.js:2:10: Missing semicolon.
Flet commented 8 years ago

Hi @sbromberger! With semistandard semicolons are required for every line.

Do you have a different expectation?

sbromberger commented 8 years ago

@flet wow, no. Sorry. I was under the mistaken recollection (it's been a while since I waded into JS) that semistandard did NOT warn about semicolons (that standard did). Many apologies.