react/scripts/eslint-rules/no-cross-fork-imports.js
Andrew Clark af1b039bdd
ESLint rule to forbid cross fork imports (#18568)
Modules that belong to one fork should not import modules that belong to
the other fork.

Helps make sure you correctly update imports when syncing changes across
implementations.

Also could help protect against code size regressions that might happen
if one of the forks accidentally depends on two copies of the same
module.
2020-04-09 18:11:34 -07:00

55 lines
1.2 KiB
JavaScript

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @emails react-core
*/
'use strict';
function isOldFork(filename) {
return filename.endsWith('.old.js') || filename.endsWith('.old');
}
function isNewFork(filename) {
return filename.endsWith('.new.js') || filename.endsWith('.new');
}
module.exports = context => {
const sourceFilename = context.getFilename();
if (isOldFork(sourceFilename)) {
return {
ImportDeclaration(node) {
const importFilename = node.source.value;
if (isNewFork(importFilename)) {
context.report(
node,
'A module that belongs to the old fork cannot import a module ' +
'from the new fork.'
);
}
},
};
}
if (isNewFork(sourceFilename)) {
return {
ImportDeclaration(node) {
const importFilename = node.source.value;
if (isOldFork(importFilename)) {
context.report(
node,
'A module that belongs to the new fork cannot import a module ' +
'from the old fork.'
);
}
},
};
}
return {};
};