Skip to content

Commit 3717079

Browse files
authored
fix: disable-conflict-eslint-plugin-react config (#1191)
Signed-off-by: Kirill Korolyov <[email protected]>
1 parent 574721a commit 3717079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/plugins/eslint-plugin/src/configs/disable-conflict-eslint-plugin-react.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ const conflictingRules = [
5555
export const name = "@eslint-react/disable-conflict-eslint-plugin-react";
5656

5757
export const rules: RulePreset = Object.fromEntries(
58-
Object.entries(conflictingRules).map(([key]) => [key, "off"] as const),
58+
conflictingRules.map((key) => [key, "off"] as const),
5959
);

0 commit comments

Comments
 (0)