Closed trydofor closed 1 month ago
https://eslint.vuejs.org/rules/no-deprecated-slot-attribute.html
"ignore" (string[]) An array of tags that ignore this rules. This option will check both kebab-case and PascalCase versions of the given tag names. Default is empty.
{
files: ['**/*.vue'],
rules: {
'vue/no-deprecated-slot-attribute': ['error', {
ignore: ['IonTabBar'],
}],
},
},
<!-- eslint-disable-next-line vue/no-deprecated-slot-attribute -->
<IonTabBar slot="bottom">
<!-- eslint-disable vue/no-deprecated-slot-attribute -->
<IonTabBar slot="bottom">
<!-- eslint-enable vue/no-deprecated-slot-attribute -->
will lint to
to lead ionic
IonTabBar
works wrong