Print the names of files being linted.

This commit is contained in:
Daniel Rosenwasser 2016-01-14 10:14:25 -08:00
parent 9df1ed4dd3
commit 94eb1079fd

View file

@ -893,6 +893,7 @@ function getLinterOptions() {
function lintFileContents(options, path, contents) {
var ll = new Linter(path, contents, options);
console.log("Linting '" + path + "'.")
return ll.lint();
}