diff --git a/packages/plugins/eslint-plugin/src/configs/disable-conflict-eslint-plugin-react.ts b/packages/plugins/eslint-plugin/src/configs/disable-conflict-eslint-plugin-react.ts index d8831514e..00a432acc 100644 --- a/packages/plugins/eslint-plugin/src/configs/disable-conflict-eslint-plugin-react.ts +++ b/packages/plugins/eslint-plugin/src/configs/disable-conflict-eslint-plugin-react.ts @@ -4,52 +4,52 @@ import type { RuleConfig } from "@eslint-react/shared"; // Rules provided by `eslint-plugin-react` that exist in this plugin. // Rules provided by `@stylistic` are also omitted from this list. const conflictingRules = [ - "button-has-type", - "destructuring-assignment", - "display-name", - "forbid-prop-types", - "forward-ref-uses-ref", - "hook-use-state", - "iframe-missing-sandbox", - "jsx-boolean-value", - "jsx-filename-extension", - "jsx-fragments", - "jsx-key", - "jsx-no-comment-textnodes", - "jsx-no-constructed-context-values", - "jsx-no-duplicate-props", - "jsx-no-leaked-render", - "jsx-no-script-url", - "jsx-no-target-blank", - "jsx-no-undef", - "jsx-no-useless-fragment", - "jsx-pascal-case", - "jsx-uses-react", - "jsx-uses-vars", - "no-access-state-in-setstate", - "no-array-index-key", - "no-children-prop", - "no-danger", - "no-danger-with-children", - "no-deprecated", - "no-did-mount-set-state", - "no-did-update-set-state", - "no-direct-mutation-state", - "no-find-dom-node", - "no-namespace", - "no-object-type-as-default-prop", - "no-redundant-should-component-update", - "no-render-return-value", - "no-string-refs", - "no-unknown-property", - "no-unsafe", - "no-unstable-nested-components", - "no-unused-class-component-members", - "no-unused-state", - "no-will-update-set-state", - "prefer-read-only-props", - "prop-types", - "void-dom-elements-no-children", + "react/button-has-type", + "react/destructuring-assignment", + "react/display-name", + "react/forbid-prop-types", + "react/forward-ref-uses-ref", + "react/hook-use-state", + "react/iframe-missing-sandbox", + "react/jsx-boolean-value", + "react/jsx-filename-extension", + "react/jsx-fragments", + "react/jsx-key", + "react/jsx-no-comment-textnodes", + "react/jsx-no-constructed-context-values", + "react/jsx-no-duplicate-props", + "react/jsx-no-leaked-render", + "react/jsx-no-script-url", + "react/jsx-no-target-blank", + "react/jsx-no-undef", + "react/jsx-no-useless-fragment", + "react/jsx-pascal-case", + "react/jsx-uses-react", + "react/jsx-uses-vars", + "react/no-access-state-in-setstate", + "react/no-array-index-key", + "react/no-children-prop", + "react/no-danger", + "react/no-danger-with-children", + "react/no-deprecated", + "react/no-did-mount-set-state", + "react/no-did-update-set-state", + "react/no-direct-mutation-state", + "react/no-find-dom-node", + "react/no-namespace", + "react/no-object-type-as-default-prop", + "react/no-redundant-should-component-update", + "react/no-render-return-value", + "react/no-string-refs", + "react/no-unknown-property", + "react/no-unsafe", + "react/no-unstable-nested-components", + "react/no-unused-class-component-members", + "react/no-unused-state", + "react/no-will-update-set-state", + "react/prefer-read-only-props", + "react/prop-types", + "react/void-dom-elements-no-children", ]; export const name = "@eslint-react/disable-conflict-eslint-plugin-react";