mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-21 23:58:06 +00:00
469 B
469 B
Imports should not containt /addon/ (no-addon-import)
On the open source world we should not import files that are internal. This will help us correct that behavior.
Rule Details
Examples of incorrect code for this rule:
import something from '@linkedin/something';
Examples of correct code for this rule:
import something from '@datahub/something';
When Not To Use It
This rule should only be applied on open source files