You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently this is considered a violation of no-shadowed-elements rule:
<Foo as |s|>
<s.bar />
</Foo>
If local variable is a hash and therefore component is referred to be dot notation, it can't shadow elements. Therefore the hash should not be enforced to start with an uppercase char IMO.
The text was updated successfully, but these errors were encountered:
Before a yielded hash had to start with uppercase char to not violate
no-shadowed-elements rule even so it could not shadow any element cause
having a dot in path.
Fixesember-template-lint#473
Currently this is considered a violation of
no-shadowed-elements
rule:If local variable is a hash and therefore component is referred to be dot notation, it can't shadow elements. Therefore the hash should not be enforced to start with an uppercase char IMO.
The text was updated successfully, but these errors were encountered: