mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
20 lines
611 B
Plaintext
20 lines
611 B
Plaintext
/**
|
|
* @name Legacy imports in migration targets
|
|
* @description Flags imports from '@/components/*' inside atoms/molecules/organisms.
|
|
* @kind problem
|
|
* @severity warning
|
|
* @id custom/legacy-imports-in-migration-targets
|
|
*/
|
|
import javascript
|
|
|
|
predicate isTargetComponentFile(File f) {
|
|
f.getRelativePath().regexpMatch("^(src/)?components/(atoms|molecules|organisms)/.*\\.tsx$")
|
|
}
|
|
|
|
from ImportDeclaration imp, File f
|
|
where
|
|
f = imp.getFile() and
|
|
isTargetComponentFile(f) and
|
|
imp.getRawImportPath().regexpMatch("^@/components/")
|
|
select imp, "Legacy import in migration target: " + imp.getRawImportPath()
|