ricardofbarros / linter-js-standard

Atom linter plugin for JavaScript, using JavaScript Standard Style
https://atom.io/packages/linter-js-standard
MIT License
99 stars 48 forks source link

Could you bump standard to the latest version (5.3.1) please? #65

Closed michaelgilley closed 8 years ago

michaelgilley commented 9 years ago

Thanks!

Makes a difference:

// Standard 5.2.1 says this is all clean
// Standard 5.3.1 reports correctly 'Unexpected whitespace before semicolon'
for (var _y = moment().format('YYYY'); _y >= 1924 ; --_y) {
  su.yearOptions.push({year: _y, abbrev: _y})
}
kilianc commented 8 years ago

+1

tonyghita commented 8 years ago

There is a pull-request out for upgrading standard to the latest: https://github.com/ricardofbarros/linter-js-standard/pull/89

ricardofbarros commented 8 years ago

Hello guys, @devTristan PR fixed this. From now this package will try to use the local standard (project's node_modules/) instead of the bin inside it. Many thanks to @devTristan