Chore: Add no-untranslated-strings rule to betterer (#88479)

This commit is contained in:
Laura Fernández 2024-05-30 12:45:22 +02:00 committed by GitHub
parent b7db268798
commit 98dcb3818c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2828 additions and 247 deletions

File diff suppressed because it is too large Load Diff

View File

@ -126,6 +126,19 @@ function countEslintErrors() {
'no-barrel-files/no-barrel-files': 'error',
},
},
{
files: ['public/**/*.tsx', 'packages/grafana-ui/**/*.tsx'],
excludedFiles: [
'public/app/plugins/**',
'*.story.tsx',
'*.{test,spec}.{ts,tsx}',
'**/__mocks__/**',
'public/test/**',
],
rules: {
'@grafana/no-untranslated-strings': 'error',
},
},
],
};