How to create a custom rule for eslint and react

74 Views Asked by At

I'm trying to add data-cy required in all my components, how I make this rule using eslint? I'm using:

eslint-plugin-react
eslint-config-prettier
eslint
prettier

I have a component like this:

<MyButton propExample="" />

without data-cy, I want to data-cy get required in all my componentes Example:

<MyButton propExample="" data-cy="hello" />
0

There are 0 best solutions below