Skip to content

Commit 62e28f1

Browse files
Trotttargos
authored andcommitted
tools: use arrow function for callback in lint-sh.js
The function declaration inside an else block is odd (and violates a recommended ESLint rule). We tend to use arrow functions for callbacks anyway, so switch to that. PR-URL: #41256 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent e2df381 commit 62e28f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/lint-sh.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,11 @@ if (
166166
const entryPoint = resolve(process.argv[2]);
167167
const stats = statSync(entryPoint, { throwIfNoEntry: false });
168168

169-
function onError(e) {
169+
const onError = (e) => {
170170
console.log(USAGE_STR);
171171
console.error(e);
172172
process.exitCode = 1;
173-
}
173+
};
174174
if (stats?.isDirectory()) {
175175
SPAWN_OPTIONS.cwd = entryPoint;
176176
checkFiles(...findScriptFilesRecursively(entryPoint)).catch(onError);

0 commit comments

Comments
 (0)