Chore: Emit theme token usage metrics (#72500)

* create rule to find instances of theme variables

* emit theme token usage metrics

* move awking into script

* make sure theme usage is covering ts and tsx files, remove commented lines
This commit is contained in:
Ashley Harrison
2023-07-28 15:08:02 +01:00
committed by GitHub
parent 50bd27b665
commit ae4810f854
5 changed files with 66 additions and 0 deletions

View File

@@ -1,7 +1,9 @@
const noAriaLabelSelectors = require('./rules/no-aria-label-e2e-selectors.cjs');
const themeTokenUsage = require('./rules/theme-token-usage.cjs');
module.exports = {
rules: {
'no-aria-label-selectors': noAriaLabelSelectors,
'theme-token-usage': themeTokenUsage,
},
};