A VUE ESLint plugin to enforce the presence of data-cy
attribute on configured components.
Choose one:
npm install eslint-plugin-data-cy --save-dev
yarn add eslint-plugin-data-cy --dev
pnpm add eslint-plugin-data-cy -D
Add data-cy to the plugins section of your .eslintrc configuration file:
{
"plugins": ["data-cy"]
}
{
rules: {
'data-cy/vue-enforce-data-cy': [
'warn',
{
components: ['MyCheckbox', 'MyButton'],
testAttributes: ['data-cy', 'v-data-cy'],
},
]
}
}
License MIT