Skip to content

Commit

Permalink
Merge pull request #32 from johnmanjiro13/update/eslint
Browse files Browse the repository at this point in the history
Update eslint packages
  • Loading branch information
johnmanjiro13 authored Oct 29, 2023
2 parents ae23046 + 4c4ec5e commit 4e7f8ee
Show file tree
Hide file tree
Showing 4 changed files with 1,148 additions and 808 deletions.
3 changes: 2 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34219,7 +34219,8 @@ function getChangedFiles(client) {
pull_number: github.context.issue.number,
});
const res = yield client.paginate(req);
const changedFiles = res.map((f) => f.filename); // eslint-disable-line @typescript-eslint/no-unsafe-member-access
// eslint-disable-next-line @typescript-eslint/no-explicit-any,@typescript-eslint/no-unsafe-member-access
const changedFiles = res.map((f) => f.filename);
return changedFiles;
});
}
Expand Down
Loading

0 comments on commit 4e7f8ee

Please sign in to comment.