Chore: create the no-untranslated-literals rule (#88271)

This commit is contained in:
Laura Fernández
2024-05-29 13:03:59 +02:00
committed by GitHub
parent 543f0ae37e
commit a47e71fd34
3 changed files with 98 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
const noAriaLabelSelectors = require('./rules/no-aria-label-e2e-selectors.cjs');
const noBorderRadiusLiteral = require('./rules/no-border-radius-literal.cjs');
const noUnreducedMotion = require('./rules/no-unreduced-motion.cjs');
const noUntranslatedStrings = require('./rules/no-utranslated-strings.cjs');
const themeTokenUsage = require('./rules/theme-token-usage.cjs');
module.exports = {
@@ -9,5 +10,6 @@ module.exports = {
'no-aria-label-selectors': noAriaLabelSelectors,
'no-border-radius-literal': noBorderRadiusLiteral,
'theme-token-usage': themeTokenUsage,
'no-untranslated-strings': noUntranslatedStrings,
},
};