We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
additionalProperties
eslint-plugin-vue-i18n/lib/rules/no-raw-text.ts
Lines 815 to 841 in fca158c
This rule is one of the rules causing type inconsistency for eslint-define-config eslint-types/eslint-define-config#189
eslint-define-config
Please fix this by adding either additionalProperties: false or additionalProperties: { type: recordValueType }
additionalProperties: false
additionalProperties: { type: recordValueType }
export interface NoRawTextRule { /** * Disallow to string literal in template or JSX. * * @see [no-raw-text](https://eslint-plugin-vue-i18n.intlify.dev/rules/no-raw-text.html) */ '@intlify/vue-i18n/no-raw-text': Rule< [ RuleLevel, { attributes?: { /** */ [k: string]: string[]; }; ignoreNodes?: any[]; ignorePattern?: string; ignoreText?: any[]; [k: string]: any; // <-- UNWANTED additionalProperties }, ] >; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
eslint-plugin-vue-i18n/lib/rules/no-raw-text.ts
Lines 815 to 841 in fca158c
This rule is one of the rules causing type inconsistency for
eslint-define-config
eslint-types/eslint-define-config#189
Please fix this by adding either
additionalProperties: false
oradditionalProperties: { type: recordValueType }
The text was updated successfully, but these errors were encountered: