You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Despite similar goals, ESLint and JSHint have some very specific differences. First and foremost, JSHint uses a progressive parser, finding errors along the way. ESLint uses Esprima, so the parsing is done first and then the rules are applied. That means JSHint will print out warnings up to and including a syntax error where ESLint will show only the syntax error. This makes JSHint much better for use in editors.
Esprima does have an issue for incremental parsing but it doesn't look like anyone's actively working on it.
for note and references
While #75 ran into blocking JSHint issue.
Can @eslint https://github.com/eslint/eslint be used?
TODO: compare, try
The text was updated successfully, but these errors were encountered: