sql: added lint-rule againts wrong imports (#75881)

This commit is contained in:
Gábor Farkas 2023-10-05 08:04:10 +02:00 committed by GitHub
parent eea95c2ddf
commit c869844a78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,10 @@
{
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": ["app/*"]
}
]
}
}