Skip to content

Commit a380789

Browse files
authored
chore: improve eslint rule (#2038)
1 parent cd83bf3 commit a380789

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eslint-rules/no-external-replay-imports.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = {
1616
if (importPath.startsWith('./') || importPath.startsWith('../')) {
1717
// For relative paths, check if they contain 'external'
1818
// This matches the test case behavior
19-
return importPath.includes('external')
19+
return importPath.includes('replay/external')
2020
}
2121

2222
return false

0 commit comments

Comments
 (0)