UNPKG

@sashar/eslint-plugin-fsd-paths

Version:

ESLint plugin for checking the correctness of import paths in FSD architecture

7 lines (6 loc) 155 B
function isPathRelative(path) { return path === '.' || path.startsWith('./') || path.startsWith('../') } module.exports = { isPathRelative }