-
-
Notifications
You must be signed in to change notification settings - Fork 25
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
Variable Formatting: global constants #42
Comments
It's intentional: eslint/eslint#10605 |
@fregante What are your thoughts about this? |
Perhaps they should be allowed only at the top level. They're pretty common, even though I don't particularly see the need for that. |
I'm not sure if they are useful in libraries as they objective is to be configurable. But I have a bunch of them in projects that running somewhere doing something. As a "need" I searched for some examples from my code (
in general: stuff that wont change at runtime / compile time constants I can use camelcase here but I am kinda used to seeing constants directly. Also they are conventions on other c derived languages (example). I am relatively sure I am not the only xo user using them. Also my other currently used language (Rust) produces a warning in that case: non-upper-case-globals but in contrast to TypeScript it knows when something is really const or not. |
Yeah, I guess upper-case is a good way to make it clear that the value is completely static. PR welcome. |
Ideally, yes, but there's no way to enforce that with this rule. |
There is. The first part of the rule description even states that:
Selectors → modifiers → global |
Oh great. I missed that. |
I tested around with the following but it didnt seem to work… Not sure why…
|
It's because of how the rule prioritizes the selectors. If you have two selectors for So because of that, the very first selector in the XO rule ends up overriding any other There are a few ways to get around this, but the simplest way is just to remove the filter entirely. Properties with hyphens or spaces will still be exempt from camelCase because of the later Once that's removed, the above code for global constants will mostly work as intended. The only issue is that it does conflict with another selector for booleans. Since that one specifies (I don't think that boolean rule actually triggers at all right now, because of the same issue with the filter. I didn't get any errors from it until I removed the filter, and then I suddenly got a whole bunch.) So if you want global constant booleans to have the required prefixes and potentially be UPPER_CASE, you need to add a special case for that, something like this:
Then adding everything together should get the right output. |
Any updates on this? |
Did someone find a way to do this? |
Related to the rule
@typescript-eslint/naming-convention
.I regularly use global constants with UPPER_CASE style for constants that wont change in runtime. Not sure how to exactly specify that in the rules but I first wanted to suggest something like that here before checking on how that could be done.
Something like these:
If thats something that is not liked here: How would you propose to write constants like this instead?
The text was updated successfully, but these errors were encountered: