Skip to content
This repository was archived by the owner on Mar 25, 2021. It is now read-only.

[Question] Import-blacklist by regex does not work as expected #4660

Closed
alxpsr opened this issue Apr 12, 2019 · 10 comments · Fixed by #4858
Closed

[Question] Import-blacklist by regex does not work as expected #4660

alxpsr opened this issue Apr 12, 2019 · 10 comments · Fixed by #4858

Comments

@alxpsr
Copy link

alxpsr commented Apr 12, 2019

Question

  • TSLint version: 5.15.0
  • TypeScript version: 3.4.3
  • Running TSLint via: CLI / VSCode

TypeScript code being linted

import { SecondaryService } from "./src";
export class BasicService {
    public State: boolean;

    constructor(public s: SecondaryService) {

    }
}

with tslint.json configuration:

{
    "defaultSeverity": "error",
    "extends": [
        "tslint:recommended"
    ],
    "jsRules": {},
    "rules": {
        "import-blacklist": [
            true,
            "^.*src$",
        ]
    },
    "rulesDirectory": []
}

Actual behavior

Tslint does not emit any errors

Expected behavior

string import { SecondaryService } from "./src"; should mark as wrong by import-blacklist regex rule

Mini-repo

https://github.com/alxpsr/tslint-regex

Questions

  • What im doing wrong?
  • How can i disallow importing from import-blacklist regex patterns?
@JoshuaKGoldberg
Copy link
Contributor

Solution: wrap any regular expressions in arrays. ["^.*src$"] instead of "^.*src$".

This isn't described well in the documentation; accepting PRs to explicitly mention this!

{
    "defaultSeverity": "error",
    "jsRules": {},
    "rules": {
        "import-blacklist": [
            true,
            ["^.*src$"]
        ]
    },
    "rulesDirectory": []
}

@alxpsr

This comment has been minimized.

@alxpsr

This comment has been minimized.

@alxpsr

This comment has been minimized.

@JoshuaKGoldberg

This comment has been minimized.

@JoshuaKGoldberg

This comment has been minimized.

@alshdavid
Copy link

{
    "defaultSeverity": "error",
    "jsRules": {},
    "rules": {
        "import-blacklist": [
            true,
            ["^.*src$"]
        ]
    },
    "rulesDirectory": []
}

doesn't match on organisation names like @mylib/thing/src

@sandrooco
Copy link

sandrooco commented Mar 10, 2020

@alshdavid Could you find a solution by now? I have exactly the same issue right now with ["^.*@app/bkh.*"].

@alshdavid
Copy link

No solution, sadly

@JoshuaKGoldberg
Copy link
Contributor

🤖 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! 👋

@palantir palantir locked and limited conversation to collaborators Mar 20, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants