mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-25 14:14:57 +00:00
17 lines
510 B
Plaintext
17 lines
510 B
Plaintext
/**
|
|
* @name Components in migration target folders
|
|
* @description Lists TSX files under src/components/atoms|molecules|organisms (primary migration targets).
|
|
* @kind problem
|
|
* @severity warning
|
|
* @id custom/components-in-migration-target-folders
|
|
*/
|
|
import javascript
|
|
|
|
predicate isTargetComponentFile(File f) {
|
|
f.getRelativePath().regexpMatch("^(src/)?components/(atoms|molecules|organisms)/.*\\.tsx$")
|
|
}
|
|
|
|
from File f
|
|
where isTargetComponentFile(f)
|
|
select f, "Component file in migration target folder"
|