1.0.7 • Published 2 years ago

eslint-plugin-data-cy v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

eslint-plugin-data-cy

A VUE ESLint plugin to enforce the presence of data-cy attribute on configured components.

Installation

Choose one:

npm install eslint-plugin-data-cy --save-dev
yarn add eslint-plugin-data-cy --dev
pnpm add eslint-plugin-data-cy -D

Usage

Add data-cy to the plugins section of your .eslintrc configuration file:

{
  "plugins": ["data-cy"]
}

Supported Rules

{
    rules: {
      'data-cy/vue-enforce-data-cy': [
        'warn',
        {
          components: ['MyCheckbox', 'MyButton'],
          testAttributes: ['data-cy', 'v-data-cy'],
        },
      ]
    }
}

License MIT

1.0.7

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.0

2 years ago