We need add a ESLint rule that will forbid `:hover,:active` selectors. ```js makeStyles({ root: { // 馃煝 should pass ":hover": { color: "red" }, ":active": { color: "blue" }, // 馃敶 should break ":hover,:active": { color: "blue" }, }, }); ``` For context, https://github.com/microsoft/griffel/discussions/495.
We need add a ESLint rule that will forbid
:hover,:activeselectors.For context, #495.