jsx-eslint / eslint-plugin-react

React-specific linting rules for ESLint
MIT License
8.86k stars 2.75k forks source link

fixed the schema of jsx-no-constructed-context-values.js #3766

Open noshiro-pf opened 2 weeks ago

noshiro-pf commented 2 weeks ago

The schema for jsx-no-constructed-context-values did not seem to satisfy eslint's Rule.RuleMetaData["schema"] type, so I fixed it.

export namespace Rule {
    interface RuleMetaData {
...
        schema?: JSONSchema4 | JSONSchema4[] | undefined;
...
}