mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
13 lines
478 B
Plaintext
13 lines
478 B
Plaintext
/**
|
|
* @name Legacy component barrel imports
|
|
* @description Flags imports from '@/components/atoms', '@/components/molecules', '@/components/organisms', or '@/components/ui'.
|
|
* @kind problem
|
|
* @severity warning
|
|
* @id custom/legacy-component-barrel-imports
|
|
*/
|
|
import javascript
|
|
|
|
from ImportDeclaration imp
|
|
where imp.getRawImportPath().regexpMatch("^@/components/(atoms|molecules|organisms|ui)(/.*)?$")
|
|
select imp, "Legacy component barrel import: " + imp.getRawImportPath()
|