forked from solidjs-community/eslint-plugin-solid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsx-no-duplicate-props.test.ts
61 lines (60 loc) · 1.7 KB
/
jsx-no-duplicate-props.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { run } from "../ruleTester";
import rule from "../../src/rules/jsx-no-duplicate-props";
export const cases = run("jsx-no-duplicate-props", rule, {
valid: [
`let el = <div a="a" b="b" />`,
`let el = <div a="a" {...{ b: "b" }} />`,
`let el = <div a="a" {...{ "b": "b" }} />`,
`let el = <div a="a" A="A" />`,
`let el = <div a="a" {...{ A: "A" }} />`,
`let el = <div class="blue" />`,
`let el = <div children={<div />} />`,
`let el = <div><div /></div>`,
],
invalid: [
{
code: `let el = <div a="a" a="aaaa" />`,
errors: [{ messageId: "noDuplicateProps" }],
},
{
code: `let el = <div a="a" {...{a: "aaaa" }} />`,
errors: [{ messageId: "noDuplicateProps" }],
},
{
code: `let el = <div {...{a: "aaaa" }} a="a" />`,
errors: [{ messageId: "noDuplicateProps" }],
},
{
code: `let el = <div a="a" {...{ "a": "aaaa" }} />`,
errors: [{ messageId: "noDuplicateProps" }],
},
{
code: `let el = <div class="blue" class="green" />`,
errors: [{ messageId: "noDuplicateClass" }],
},
{
code: `let el = <div class="blue" {...{ class: "green" }} />`,
errors: [{ messageId: "noDuplicateClass" }],
},
{
code: `let el = <div children={<div />}><div /></div>`,
errors: [
{
messageId: "noDuplicateChildren",
data: {
used: "`props.children`, JSX children",
},
},
],
},
{
code: `let el = <div innerHTML="<p></p>" textContent="howdy!" />`,
errors: [
{
messageId: "noDuplicateChildren",
data: { used: "`props.innerHTML`, `props.textContent`" },
},
],
},
],
});