Skip to content

Fill empty data-testid attributes with nanoid

License

Notifications You must be signed in to change notification settings

matzkoh/eslint-plugin-generate-test-id

Repository files navigation

npm-badge downloads-badge actions-badge renovate-badge codecov-badge

eslint-plugin-generate-test-id

Fill empty data-test-id attributes with nanoid.

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-generate-test-id:

npm install eslint-plugin-generate-test-id --save-dev

Usage

{
  "extends": ["plugin:generate-test-id/recommended"]
}

eslint.config.js (requires eslint>=v8.23.0)

const generateTestIdJsx = require("eslint-plugin-eslint-plugin/configs/recommended");

module.exports = [generateTestIdJsx];

Rules

⚠️ Configurations set to warn in.
✅ Set in the recommended configuration.
🔧 Automatically fixable by the --fix CLI option.

Name Description ⚠️ 🔧
jsx Fill empty data-test-id attributes with nanoid 🔧

Preset configs

Recommended config

{
  "extends": ["plugin:generate-test-id/recommended"]
}