Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions crates/oxc_linter/src/rules/react/jsx_no_duplicate_props.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ declare_oxc_lint!(
/// <App a />;
/// <App bar baz foo={3} />;
/// ```
///
/// ### Differences from eslint-plugin-react
///
/// This rule does not support the `ignoreCase` option. Props with different cases are
/// considered distinct and will not be flagged as duplicates (e.g., `<App foo Foo />`
/// is allowed). This is intentional, as props are case-sensitive in JSX.
JsxNoDuplicateProps,
react,
correctness
Expand Down
Loading