Open
Description
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:
const DIRECTORY = './events'
const DEFAULT_OPTIONS: Options = {
…
}
If thats something that is not liked here: How would you propose to write constants like this instead?
Activity