stylelint-no-unused-selectors icon indicating copy to clipboard operation
stylelint-no-unused-selectors copied to clipboard

Support for curly braces, template literals and computed properties

Open nodaguti opened this issue 5 years ago • 0 comments

When there is no expressions and variables used in curly braces, template literals and computed properties, we should be able to extract classNames from them.

  • <div className={'aaa'} />
  • <div className={`aaa`} />
  • <div className={classNames(`aaa`, { ['aaa']: true, [`aaa`]: true })} />

nodaguti avatar May 23 '19 00:05 nodaguti