Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 62e28f1

Browse filesBrowse 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 <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent e2df381 commit 62e28f1
Copy full SHA for 62e28f1

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Collapse file

‎tools/lint-sh.js‎

Copy file name to clipboardExpand all lines: tools/lint-sh.js
+2-2Lines changed: 2 additions & 2 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.