I am facing an issue with Style Lint where I have configured the selector-max-specificity to 0,2,0 and ignored certain rules like
ignoreSelectors: [":focus", ":hover", etc..]
However, I am unable to ignore the :not(.myClass)
selector as desired.
For instance, I have a class named .track a:not(.track-visual)
I have attempted using regex selectors such as "/:not\\(.*\\)/"
or "/.*:not\\(.*\\)/"
Unfortunately, none of these approaches have worked for me.
If you have a solution, please do share. Thank you!