Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relax @typescript-eslint/no-magic-numbers #1786

Closed
darkbasic opened this issue Sep 30, 2024 · 11 comments · Fixed by #1795
Closed

Relax @typescript-eslint/no-magic-numbers #1786

darkbasic opened this issue Sep 30, 2024 · 11 comments · Fixed by #1795
Labels

Comments

@darkbasic
Copy link

darkbasic commented Sep 30, 2024

Simple tasks like initializing a loop variable to zero with @typescript-eslint/no-magic-numbers current expects that you should create a separate const for zero.
This doesn't happen with @typescript-eslint/no-magic-numbers by default: https://typescript-eslint.io/play/#ts=5.5.2&fileType=.tsx&code=MYewdgzgLgBAsgQQBowLwwIwAYsG4BQ%2BAZiAE4wAUANgKawCWaMeMjAPPMrqwNQ8CUMAN74YMKAAtSIAO4wwNOQFFS00hX4EAvkA&eslintrc=N4KABGBEBOCuA2BTAzpAXGUEKQAIBcBPABxQGNoBLY-AWhXkoDt8B6Jge1oFsBDAc0plaTWNwBGiaKgyQA7r2hNI4MAF8QaoA&tsconfig=N4KABGBEDGD2C2AHAlgGwKYCcDyiAuysAdgM6QBcYoEEkJemy0eAcgK6qoDCAFutAGsylBm3TgwAXxCSgA&tokens=false

I don't think the current eslint-config-love defaults for that rule are acceptable and apparently I'm not the only one that thinks so:

image

@mightyiam
Copy link
Owner

Sorry and thank you. Will take a look.

eslint-config-love-release-bot bot pushed a commit that referenced this issue Oct 5, 2024
## [84.1.0](v84.0.0...v84.1.0) (2024-10-05)

### Features

* no-magic-numbers.enforceConst: false ([c711820](c711820)), closes [#1786](#1786)
@eslint-config-love-release-bot

🎉 This issue has been resolved in version 84.1.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

@darkbasic
Copy link
Author

@mightyiam unfortunately it's still not fixed even in latest version:
image

@mightyiam
Copy link
Owner

@darkbasic may I please see one of those?

@darkbasic
Copy link
Author

@mightyiam just some of them:
image
image
image
image

@mcereijo
Copy link

I'm facing the same problem with version 89.0.0 and it makes the code much verbose:

expect(fetchMock).toHaveBeenCalledTimes(1)

Should be changed to:

const timesCalled = 1
expect(fetchMock).toHaveBeenCalledTimes(timesCalled)

@darkbasic
Copy link
Author

Yeah this is insane. I get what the rule is meant to achieve, but currently it's doing more harm than good in my opinion and I ended up disabling it in all my projects.

@gtbuchanan
Copy link

For what it's worth, it's probably better to set ignore: [0, 1, 2, 100] to account for the accepted uses of magic numbers. See here for C# variant.

@darkbasic
Copy link
Author

We should add -1 as well, since it's the "index not found" value and can be used in length - 1 as well.

@mightyiam
Copy link
Owner

This configuration is indented to be quite strict.
Please see a readme section we've just added:
https://github.com/mightyiam/eslint-config-love/blob/01af4999a739cb4ec8c51e67c63f0bf3431f5246/README.md#disabling-rules

@mightyiam just some of them: image

This looks like it may be a legitimate match for this rule. Perhaps something like

const HEADER_ROW_INDEX = 0
const row = rows[HEADER_ROW_INDEX]

Granted, there's a different issue with this, #1830. I will discuss there.

image

Seems like another possible match for this rule. What does 1 pixel stand for? Why one pixel? Perhaps:

const BORDER_PIXEL_WIDTH = 1
header.width = newValue - BORDER_PIXEL_WIDTH

image

Perhaps a utility isEmpty function?

image

This also looks to me like it could use encapsulation as a utility function, in which an eslint-disable comment would be appropriate.

expect(fetchMock).toHaveBeenCalledTimes(1)

I would disable the rule in the test files in which counts are used. Or maybe all of the test files.

For what it's worth, it's probably better to set ignore: [0, 1, 2, 100] to account for the accepted uses of magic numbers. See here for C# variant.

I'm concerned that ignoring specific numbers would reduce the efficacy of the rule.

@darkbasic
Copy link
Author

Please see my comment on the other thread: #1830 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Development

Successfully merging a pull request may close this issue.

4 participants