Ignacio Bona Piedrabuena 89c78551cc
1604086049622-ui-sync (#1981)
Co-authored-by: Ignacio Bona <ibonapiedrabuena@linkedin.com>
2020-11-09 12:17:51 -08:00

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