According to the changelog for version 4.3.0 the no-input-rename rule should now allow input aliasing for directives when the alias matches the selector name as described in the angular attribute directive guide. However after updating to 4.3.0 the following code is still reported as violating the no-input-rename rule:
@Directive({
selector: "[fssMsIconButtonLabel]"
})
export class IconButtonLabelDirective {
@Input("fssMsIconButtonLabel") label: string;
constructor(el: ElementRef) {}
}