-
Notifications
You must be signed in to change notification settings - Fork 26
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
strict #128
Comments
I think we should have strict mode, it does more than add checks, it turns mistakes that may fail silently into actual errors. |
Many of the See:
What we need to know what additional benefit we get from including a |
@nelsonic from a quick scan of those articles,
I agree that most of the issues covered by strict mode are also covered by the linter. But having strict mode on as well provides a level of redundancy. We know that we may change some of the linter rules in the future. It's nice to have the freedom to be able to do that without worrying about that same change introducing a vector for weird run-time bugs. I'm happy to be persuaded to turn this off, but at the moment I think it's a good thing to have. |
http://eslint.org/docs/rules/strict
I'm not sure about this rule, I think it can add more checks and good practice by using it but we also have all the other eslint which let us know if something is wrong
The text was updated successfully, but these errors were encountered: