UNPKG

eslint-plugin-path-supervisor

Version:

Plugin for checking the rules of absolute and relative paths in project

10 lines (8 loc) 243 B
function getCurrentFilePathSegments(currentFilePath) { const projectPath = currentFilePath?.split('src')[1]; const segments = projectPath?.split('/') return segments; } module.exports = { getCurrentFilePathSegments }