-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Closed
Labels
accepting prsGo ahead, send a pull request that resolves this issueGo ahead, send a pull request that resolves this issuebugSomething isn't workingSomething isn't workingpackage: eslint-pluginIssues related to @typescript-eslint/eslint-pluginIssues related to @typescript-eslint/eslint-plugin
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 have searched for related issues and found none that matched my issue.
- I have read the FAQ and my problem is not listed.
Playground Link
Repro Code
enum Test {
// Spicy numbers – no errors
MinusZero = -0,
MinusZero2 = -0,
MinusOne = -1,
MinusOne2 = -1,
PlusOne = +1,
PlusOne2 = +1,
PlusZero = +0,
PlusZero2 = +0,
// Vanilla numbers – yes errors
BoringNumber = 1,
BoringNumber2 = 1,
}ESLint Config
module.exports = {
parser: "@typescript-eslint/parser",
rules: {
"@typescript-eslint/no-duplicate-enum-values": "error"
},
};tsconfig
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
Bardiamist
Metadata
Metadata
Assignees
Labels
accepting prsGo ahead, send a pull request that resolves this issueGo ahead, send a pull request that resolves this issuebugSomething isn't workingSomething isn't workingpackage: eslint-pluginIssues related to @typescript-eslint/eslint-pluginIssues related to @typescript-eslint/eslint-plugin
{ "compilerOptions": { // ... } }