You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I work in a large codebase that happens to use lots of magic data attributes to change behavior of things in subtle ways. It can hurt greppability when seeing one of these data attributes used in css, but on the js side the data attribute is accessed via the dataset property. If you search the codebase for the data-* attribute you see in css, you won't find its usage on the js side and you have to know to strip the data and camelCase the name to find it.
It'd be nice if there was an inverse of prefer-dom-node-dataset, or if it took an option to invert the check.
github-actionsbot
changed the title
Rule proposal: the inverse of prefer-dom-node-dataset
Rule proposal: the inverse of prefer-dom-node-datasetSep 16, 2024
Description
I work in a large codebase that happens to use lots of magic data attributes to change behavior of things in subtle ways. It can hurt greppability when seeing one of these data attributes used in css, but on the js side the data attribute is accessed via the
dataset
property. If you search the codebase for thedata-*
attribute you see in css, you won't find its usage on the js side and you have to know to strip the data and camelCase the name to find it.It'd be nice if there was an inverse of
prefer-dom-node-dataset
, or if it took an option to invert the check.Maybe this is easy enough to set up with no-restricted-syntax?
Fail
Pass
Proposed rule name
prefer-dom-node-has-attribute
Additional Info
For now I can use no-restricted-syntax with
MemberExpression[property.name="dataset"]
, but an autofixer would be nice here.The text was updated successfully, but these errors were encountered: