UNPKG

eslint-plugin-conarti-fsd

Version:
22 lines (17 loc) 319 B
module.exports.shouldBeAbsolute = (pathsInfo) => { const { isRelative, importLayer, currentFileLayer, } = pathsInfo; if (!isRelative) { return false; } if (!importLayer) { return false; } if (!currentFileLayer) { return false; } return currentFileLayer !== importLayer; };