reid / node-jslint

The JavaScript Code Quality Tool — for Node.js.
http://jslint.com/
Other
491 stars 101 forks source link

lastest !== es6 edition #169

Closed szepeviktor closed 6 years ago

szepeviktor commented 6 years ago

Is it OK? @smikes

viktor@solid:~/tmp/ghost$ jslint --version
node-jslint version: 0.12.0  JSLint edition 2013-08-26
viktor@solid:~/tmp/ghost$ jslint --edition=latest --version
node-jslint version: 0.12.0  JSLint edition 2015-10-29
viktor@solid:~/tmp/ghost$ jslint --edition=es6 --version
node-jslint version: 0.12.0  JSLint edition 2018-01-26
smikes commented 6 years ago

Yes. Unfortunately this is intentional for historical reasons. For about a year or so, the es6 version was less functional than the es5 version.

Currently: --edition=latest means the latest es5 version --edition=es6 means the latest es6 version

szepeviktor commented 6 years ago

Thank you!