tools: fix require-common-first lint rule from subfolder

PR-URL: https://github.com/nodejs/node/pull/56325
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
This commit is contained in:
Antoine du Hamel 2024-12-22 19:44:20 +01:00 committed by RafaelGSS
parent 25d895c523
commit 2d67129edb
No known key found for this signature in database
GPG key ID: 8BEAB4DFCF555EF4
2 changed files with 7 additions and 1 deletions

View file

@ -16,6 +16,12 @@ new RuleTester().run('require-common-first', rule, {
code: 'require("common")\n' +
'require("assert")'
},
{
code: 'import "../../../../common/index.mjs";',
languageOptions: {
sourceType: 'module',
},
},
],
invalid: [
{

View file

@ -22,7 +22,7 @@ module.exports = {
* @returns {string} module name
*/
function getModuleName(str) {
if (str === '../common/index.mjs') {
if (str.startsWith('../') && str.endsWith('/common/index.mjs')) {
return 'common';
}