Hi,
I'm developing a Firefox extension and I'd like to use Javascript Lint to help me find bugs. However, I keep on getting a "SyntaxError: missing name after . operator" error for the second line:
const Cu = Components.utils;
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
Apparently it's because "import" is a keyword. But it's used like that in Mozilla... A similar problem is with the "let" keyword.
Anyone knows how to ignore those errors?