This repository was archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 885
[Question] Import-blacklist by regex does not work as expected #4660
Comments
Solution: wrap any regular expressions in arrays. This isn't described well in the documentation; accepting PRs to explicitly mention this! {
"defaultSeverity": "error",
"jsRules": {},
"rules": {
"import-blacklist": [
true,
["^.*src$"]
]
},
"rulesDirectory": []
} |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
4 tasks
{
"defaultSeverity": "error",
"jsRules": {},
"rules": {
"import-blacklist": [
true,
["^.*src$"]
]
},
"rulesDirectory": []
} doesn't match on organisation names like |
@alshdavid Could you find a solution by now? I have exactly the same issue right now with |
No solution, sadly |
🤖 Beep boop! 👉 TSLint is deprecated 👈 (#4534) and you should switch to typescript-eslint! 🤖 🔒 This issue is being locked to prevent further unnecessary discussions. Thank you! 👋 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Question
TypeScript code being linted
with
tslint.json
configuration:Actual behavior
Tslint does not emit any errors
Expected behavior
string
import { SecondaryService } from "./src";
should mark as wrong by import-blacklist regex ruleMini-repo
https://github.com/alxpsr/tslint-regex
Questions
import-blacklist
regex patterns?The text was updated successfully, but these errors were encountered: