Give some love to the linter

This commit is contained in:
dcodeIO
2018-03-13 14:03:57 +01:00
parent 23a7db4dc3
commit 081ac768ae
34 changed files with 526 additions and 401 deletions

View File

@ -534,7 +534,7 @@ exports.main = function main(argv, options, callback) {
function readFileNode(filename) {
try {
var text;
let text;
stats.readCount++;
stats.readTime += measure(() => {
text = fs.readFileSync(filename, { encoding: "utf8" });