Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
Closed
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.
Playground Link
Repro Code
enumTest{// Spicy numbers – no errorsMinusZero=-0,MinusZero2=-0,MinusOne=-1,MinusOne2=-1,PlusOne=+1,PlusOne2=+1,PlusZero=+0,PlusZero2=+0,// Vanilla numbers – yes errorsBoringNumber=1,BoringNumber2=1,}
ESLint Config
module.exports={parser:"@typescript-eslint/parser",rules:{"@typescript-eslint/no-duplicate-enum-values":"error"},};
tsconfig
{"compilerOptions": {// ... }}Expected Result
- +Something numbers should be considered equal to their unsigned counterparts. E.g.
+1=1. - Minus numbers should be checked against other minus numbers.
-0and0/+0should be considered to be different values, because math.
Actual Result
Rule doesn't lint numbers if they have + or - in front of them.
Additional Info
No response