fix(eslint-plugin): specify exact type of `no-untranslated-text` rule options (#11587)

This commit is contained in:
Andrew Kazakov 2025-12-05 21:26:58 +03:00 committed by GitHub
parent 5e77169b35
commit 21b7b7fd02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,6 +30,9 @@ export default createRule<Options, MessageIds>({
properties: {
ignoredStrings: {
type: 'array',
items: {
type: 'string',
},
},
},
additionalProperties: false,