-
-
Notifications
You must be signed in to change notification settings - Fork 65
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
Comments
Sorry and thank you. Will take a look. |
## [84.1.0](v84.0.0...v84.1.0) (2024-10-05) ### Features * no-magic-numbers.enforceConst: false ([c711820](c711820)), closes [#1786](#1786)
🎉 This issue has been resolved in version 84.1.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
@mightyiam unfortunately it's still not fixed even in latest version: |
@darkbasic may I please see one of those? |
@mightyiam just some of them: |
I'm facing the same problem with version
Should be changed to:
|
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. |
For what it's worth, it's probably better to set |
We should add |
This configuration is indented to be quite strict.
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. 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 Perhaps a utility This also looks to me like it could use encapsulation as a utility function, in which an
I would disable the rule in the test files in which counts are used. Or maybe all of the test files.
I'm concerned that ignoring specific numbers would reduce the efficacy of the rule. |
Please see my comment on the other thread: #1830 (comment) |
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:
The text was updated successfully, but these errors were encountered: