It seems that javascript files are always read with the system encoding. It would be nice if i where able to specify the encoding so my build doesn't depend on the locale of the system it's running on.
As far as i can tell the file is read in jshint-rhino-2.4.3.js on row 13723
var input = readFile(name);
where readFile can take a second argument to specify a character coding.
It seems that javascript files are always read with the system encoding. It would be nice if i where able to specify the encoding so my build doesn't depend on the locale of the system it's running on.
As far as i can tell the file is read in jshint-rhino-2.4.3.js on row 13723
var input = readFile(name);
where readFile can take a second argument to specify a character coding.