Skip to content

Commit

Permalink
🍹 lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hisasann committed May 5, 2020
1 parent f4cab52 commit 11c3871
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/delete-log-files.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function getYearMonthDay(file) {
return {
year: split[0],
month: split[1],
day: _.split(split[2], '_', 1)[0]
day: _.split(split[2], '_', 1)[0],
};
}
function isBefore(howManyDaysAgo, yearMonthDay) {
Expand Down
2 changes: 1 addition & 1 deletion lib/utils/find-log-path.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function prepareDir(path, appName) {
}
return {
or: prepareDir,
result: (this ? this.result : false) || path
result: (this ? this.result : false) || path,
};
}
function mkDir(path, root = null) {
Expand Down

0 comments on commit 11c3871

Please sign in to comment.