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
I want to allow this abbr elementRef: ElementRef as it a well known term in Angular
replacements:[
// those don't work
elementRef: false,
ElementRef: false,
Ref: false,
// only this works
ref: false
]
I want to allow ref inside elementRef only
also, mixed-case should be respected, thus Ref should only match Ref and elementRef but not ref
elementRef in the configuration above doesn't match itself, but in docs:
Camelcase replacements will only match complete identifiers. For example errCb will only match errCb and ErrCb. It will not match fooErrCb or errCbFoo.
The text was updated successfully, but these errors were encountered:
I want to allow this abbr
elementRef: ElementRef
as it a well known term in AngularI want to allow
ref
insideelementRef
onlyalso, mixed-case should be respected, thus
Ref
should only matchRef
andelementRef
but notref
elementRef
in the configuration above doesn't match itself, but in docs:The text was updated successfully, but these errors were encountered: