grafana/packages/grafana-eslint-rules
2023-08-01 12:44:25 +02:00
..
rules GLDS: Check if tokens are used as borderRadius values (#71187) 2023-08-01 12:44:25 +02:00
index.cjs GLDS: Check if tokens are used as borderRadius values (#71187) 2023-08-01 12:44:25 +02:00
LICENSE_APACHE2
package.json Release: Bump version to 10.2.0-pre (#72418) 2023-07-27 09:21:29 +03:00
README.md GLDS: Check if tokens are used as borderRadius values (#71187) 2023-08-01 12:44:25 +02:00

Grafana ESLint Rules

This package contains custom eslint rules for use within the Grafana codebase only. They're extremley specific to our codebase, and are of little use to anyone else. They're not published to NPM, and are consumed through the Yarn workspace.

Rules

@grafana/no-aria-label-selectors

Require aria-label JSX properties to not include selectors from the @grafana/e2e-selectors package.

Previously we hijacked the aria-label property to use as E2E selectors as an attempt to "improve accessibility" while making this easier for testing. However, this lead to many elements having poor, verbose, and unnecessary labels.

Now, we prefer using data-testid for E2E selectors.

@grafana/no-border-radius-literal

Check if border-radius theme tokens are used.

To improve the consistency across Grafana we encourage devs to use tokens instead of custom values. In this case, we want the borderRadius to use the appropiate token such as theme.shape.radius.default, theme.shape.radius.pill or theme.shape.radius.circle.

@grafana/theme-token-usage

Used to find all instances of theme tokens being used in the codebase and emit the counts as metrics. Should not be used as an actual lint rule!