-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More rigorous linting #722
Conversation
LGTM |
Looks good. I use another linter that I think will start complaining about side effects in the tests, but I'll see about making them both happy. |
I also use Note that this PR depends on #740. |
I've now fixed this and updated the PR. The fix was, instead of writing: new X(); // jslint issues WARNING:Do not use 'new' for side effects. I've used: var x = new X();
x = x; // suppress gjslint warning about unused variable This passes both |
Very nice Tom! Thanks. |
Clear the bounds in Protocol.BBOX when a load fails (r=bartvde)
This PR activates the
--jslint_error=all
flag togjslint
and fixes all the problems it finds.