Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
Open
Description
Before You File a Bug Report Please Confirm You Have Done The Following...
- I have tried restarting my IDE and the issue persists.
- I have updated to the latest version of the packages.
- I havesearched for related issues and found none that matched my issue.
- I haveread the FAQ and my problem is not listed.
Issue Description
I was using the newallow option forrestrict-template-expressions thatlanded in8.6.0
I expected that:
// packages/flat-config-typed-tsconfig/src/index.tsimport{Uuid}from'@company/core'exportclassService{publiccreatePosition(id:Uuid,):void{// Invalid type "Uuid" of template literal expressionconsta=`someUrl/${id}`;// ^ specifically not working when specifying package: @company/core}}
doesnot report@typescript-eslint/restrict-template-expressions with the following config:
"@typescript-eslint/restrict-template-expressions":["error",{allow:[// doesn't appear to be working{from:"package",name:"Uuid",package:"@company/core",},],},],
The uuid file in question exports a class with a custom.toString so I don't want it to error 🙂 See reproduction repo
Feels related to this old fix:#6780 but I might be barking up the wrong tree
Reproduction Repository Link
https://github.com/simon-v-swyftx/typescript-eslint-reproducable
Repro Steps
- clone the repo
yarn install- view
packages/flat-config-typed-tsconfig/src/index.ts - observe erroron line 8
Versions
| package | version |
|---|---|
@typescript-eslint/eslint-plugin | 8.6.0 |
@typescript-eslint/parser | 8.6.0 |
@typescript-eslint/scope-manager | 8.6.0 |
@typescript-eslint/typescript-estree | 8.6.0 |
@typescript-eslint/type-utils | 8.6.0 |
@typescript-eslint/utils | 8.6.0 |
TypeScript | 5.6.2 |
ESLint | 9.11.0 |
node | 20.10.0 |