noDuplicateJsxProps
诊断类别:lint/suspicious/noDuplicateJsxProps
¥Diagnostic Category: lint/suspicious/noDuplicateJsxProps
自从:v1.0.0
¥Since: v1.0.0
来源:
¥Sources:
-
与以下相同:
react/jsx-no-duplicate-props
¥Same as:
react/jsx-no-duplicate-props
防止多次分配 JSX 属性。
¥Prevents JSX properties to be assigned multiple times.
¥Examples
¥Invalid
code-block.jsx:1:8 lint/suspicious/noDuplicateJsxProps ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This JSX property is assigned multiple times.
> 1 │ <Hello name=“John” name=“John” />
│ ^^^^^^^^^^^
2 │
ℹ This attribute is assigned again here.
> 1 │ <Hello name=“John” name=“John” />
│ ^^^^^^^^^^^
2 │
code-block.jsx:1:8 lint/suspicious/noDuplicateJsxProps ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This JSX property is assigned multiple times.
> 1 │ <label xml:lang
=“en-US” xml:lang
=“en-US”></label>
│ ^^^^^^^^^^^^^^^^
2 │
ℹ This attribute is assigned again here.
> 1 │ <label xml:lang
=“en-US” xml:lang
=“en-US”></label>
│ ^^^^^^^^^^^^^^^^
2 │
¥Valid
¥Related links