forked from jsx-eslint/eslint-plugin-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathno-object-type-as-default-prop.js
211 lines (202 loc) · 3.97 KB
/
no-object-type-as-default-prop.js
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/**
* @fileoverview Prevent usage of object type variables as default param in functional component
* @author Chang Yan
*/
'use strict';
// ------------------------------------------------------------------------------
// Requirements
// ------------------------------------------------------------------------------
const RuleTester = require('eslint').RuleTester;
const parsers = require('../../helpers/parsers');
const rule = require('../../../lib/rules/no-object-type-as-default-prop');
const parserOptions = {
ecmaVersion: 2018,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
};
// ------------------------------------------------------------------------------
// Tests
// ------------------------------------------------------------------------------
const ruleTester = new RuleTester({ parserOptions });
const MESSAGE_ID = 'forbiddenTypeDefaultParam';
const expectedViolations = [
{
messageId: MESSAGE_ID,
data: {
propName: 'a',
forbiddenType: 'object literal',
},
},
{
messageId: MESSAGE_ID,
data: {
propName: 'b',
forbiddenType: 'array literal',
},
},
{
messageId: MESSAGE_ID,
data: {
propName: 'c',
forbiddenType: 'regex literal',
},
},
{
messageId: MESSAGE_ID,
data: {
propName: 'd',
forbiddenType: 'arrow function',
},
},
{
messageId: MESSAGE_ID,
data: {
propName: 'e',
forbiddenType: 'function expression',
},
},
{
messageId: MESSAGE_ID,
data: {
propName: 'f',
forbiddenType: 'class expression',
},
},
{
messageId: MESSAGE_ID,
data: {
propName: 'g',
forbiddenType: 'construction expression',
},
},
{
messageId: MESSAGE_ID,
data: {
propName: 'h',
forbiddenType: 'JSX element',
},
},
{
messageId: MESSAGE_ID,
data: {
propName: 'i',
forbiddenType: 'Symbol literal',
},
},
];
ruleTester.run('no-object-type-as-default-prop', rule, {
valid: parsers.all([].concat(
`
function Foo({
bar = emptyFunction,
}) {
return null;
}
`,
`
function Foo({
bar = emptyFunction,
...rest
}) {
return null;
}
`,
`
function Foo({
bar = 1,
baz = 'hello',
}) {
return null;
}
`,
`
function Foo(props) {
return null;
}
`,
`
function Foo(props) {
return null;
}
Foo.defaultProps = {
bar: () => {}
}
`,
`
const Foo = () => {
return null;
};
`,
`
const Foo = ({bar = 1}) => {
return null;
};
`,
`
const Foo = ({bar = 1}, context) => {
return null;
};
`,
`
export default function NotAComponent({foo = {}}) {}
`
)),
invalid: parsers.all([].concat(
{
code: `
function Foo({
a = {},
b = ['one', 'two'],
c = /regex/i,
d = () => {},
e = function() {},
f = class {},
g = new Thing(),
h = <Thing />,
i = Symbol('foo')
}) {
return null;
}
`,
errors: expectedViolations,
},
{
code: `
const Foo = ({
a = {},
b = ['one', 'two'],
c = /regex/i,
d = () => {},
e = function() {},
f = class {},
g = new Thing(),
h = <Thing />,
i = Symbol('foo')
}) => {
return null;
}
`,
errors: expectedViolations,
},
{
code: `
const Foo = ({
a = {},
b = ['one', 'two'],
c = /regex/i,
d = () => {},
e = function() {},
f = class {},
g = new Thing(),
h = <Thing />,
i = Symbol('foo')
}, context) => {
return null;
}
`,
errors: expectedViolations,
}
)),
});