mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
13 lines
417 B
Plaintext
13 lines
417 B
Plaintext
/**
|
|
* @name Direct JSON definition imports
|
|
* @description Flags imports from '@/components/json-definitions' to enforce centralized exports.
|
|
* @kind problem
|
|
* @severity warning
|
|
* @id custom/imports-json-definitions
|
|
*/
|
|
import javascript
|
|
|
|
from ImportDeclaration imp
|
|
where imp.getRawImportPath().regexpMatch("^@/components/json-definitions/")
|
|
select imp, "Direct JSON definition import: " + imp.getRawImportPath()
|