I spent a lot of time debugging a program, thinking I couldn't do something when my only mistake was to having switched the case of a variable name.
I can enable strict mode (AKA, no undeclared variable can be used) per file by typing "use strict"; it indeed shows me that I am using a non-existing variable.
How can I enable strict mode globally, or at least for my project's files ?