Skip to content

Commit 8512c37

Browse files
committed
chore(eslint.config): allow input alias
1 parent efac7a2 commit 8512c37

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports = tseslint.config(
3030
style: 'kebab-case'
3131
}
3232
],
33-
'@angular-eslint/no-input-rename': 'warn',
33+
'@angular-eslint/no-input-rename': 'off',
3434
'@angular-eslint/no-output-rename': 'warn',
3535
'@typescript-eslint/consistent-indexed-object-style': 'off',
3636
'@typescript-eslint/no-explicit-any': 'off',

projects/coreui-angular/src/lib/accordion/accordion-item/accordion-item.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export class AccordionItemComponent implements OnInit, OnDestroy {
3636
* @return boolean
3737
* @default false
3838
*/
39-
// eslint-disable-next-line @angular-eslint/no-input-rename
4039
readonly visibleInput = input(false, { transform: booleanAttribute, alias: 'visible' });
4140

4241
readonly itemVisible = signal(false);

0 commit comments

Comments
 (0)