Lea Rosema on Nostr: eslint and sonarqube can all be nice helpful tools. But they can be the opposite when ...
eslint and sonarqube can all be nice helpful tools. But they can be the opposite when there are rules which are just for enforcing a questionable code style.
IMHO, there is nothing wrong with string concatenation in JavaScript like: string1 + string2 . Some Lint rules require you to rewrite it like this:
`${string1}${string2}`.
And this is pointless and brings no benefit at all.
IMHO, there is nothing wrong with string concatenation in JavaScript like: string1 + string2 . Some Lint rules require you to rewrite it like this:
`${string1}${string2}`.
And this is pointless and brings no benefit at all.