Skip to content

Commit 9c2abc3

Browse files
Trottaddaleax
authored andcommitted
tools: fix indentation in required-modules.js
In preparation for applying the more strict indentation linting available in ESLint 4.0.0, correct minor indentation issues in tools/eslint-rules/required-modules.js. This is the only file with indentation that does not conform to the stricter checks. PR-URL: #13758 Reviewed-By: Teddy Katz <[email protected]> Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent 9ff9782 commit 9c2abc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/eslint-rules/required-modules.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ module.exports = function(context) {
7777
function(module) {
7878
return foundModules.indexOf(module === -1);
7979
}
80-
);
80+
);
8181
missingModules.forEach(function(moduleName) {
8282
context.report(
8383
node,
8484
'Mandatory module "{{moduleName}}" must be loaded.',
8585
{ moduleName: moduleName }
86-
);
86+
);
8787
});
8888
}
8989
}

0 commit comments

Comments
 (0)