Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 411 Bytes

no-relative-import-paths.md

File metadata and controls

11 lines (6 loc) · 411 Bytes

Pattern: Relative import path

Issue: -

Description

Moving a file to different folder, could result in changing all imports statement in that file. This will not happen is the import paths are absolute. The eslint rule helps enforcing having absolute import paths.

Further Reading