-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathno-undef-class.js
269 lines (249 loc) · 5.03 KB
/
no-undef-class.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
import { RuleTester } from 'eslint';
import rule from '../../../lib/rules/no-undef-class';
import { test } from '../../utils';
const ruleTester = new RuleTester();
ruleTester.run('no-undef-class', rule, {
/*
valid cases
*/
valid: [
/*
dot notation
eg: s.container
*/
test({
code: `
import s from './noUndefClass1.scss';
export default Foo = () => (
<div className={s.container}>
</div>
);
`,
}),
/*
square bracket string key
eg: s['container']
*/
test({
code: `
import s from './noUndefClass1.scss';
export default Foo = () => (
<div className={s['container']}>
</div>
);
`,
}),
/*
does not check for dynamic properties
eg: s[dynamicValue]
*/
test({
code: `
import s from './noUndefClass1.scss';
export default Foo = (props) => (
<div className={s[props.primary]}>
</div>
);
`,
}),
/*
names starting with _ will be ignored
*/
test({
code: `
import s from './noUndefClass1.scss';
export default Foo = () => (
<div>
{s._getCss()}
</div>
);
`,
}),
/*
using composes
*/
test({
code: `
import s from './composes1.scss';
export default Foo = () => (
<div className={s.bar}>
<div className={s.baz}>
</div>
</div>
);
`,
}),
/*
using @extend
*/
test({
code: `
import s from './extend1.scss';
export default Foo = () => (
<div className={s.bar}>
<div className={s.baz}>
</div>
</div>
);
`,
}),
/*
file that can't be parsed should not give any error
*/
test({
code: `
import s from './unparsable.scss';
export default Foo = () => (
<div className={s.bar}>
<div className={s.baz}>
</div>
</div>
);
`,
}),
/*
:global is ignored
*/
test({
code: `
import s from './global1.scss';
export default Foo = () => (
<div className={s.bar}>
<div className={s.baz}>
<div className={s.foo}></div>
</div>
</div>
);
`
}),
/*
use gonzales-primitive when gonzales fails to parse
*/
test({
code: `
import s from './gonzalesFail1.scss';
export default Foo = () => (
<div className={s.foo}></div>
);
`
}),
],
/*
invalid cases
*/
invalid: [
/*
dot notation
*/
test({
code: `
import s from './noUndefClass1.scss';
export default Foo = () => (
<div className={s.containr}>
</div>
);
`,
errors: [
'Class \'containr\' not found'
]
}),
/*
square bracket
*/
test({
code: `
import s from './noUndefClass1.scss';
export default Foo = () => (
<div className={s['containr']}>
</div>
);
`,
errors: [
'Class \'containr\' not found',
],
}),
/*
classes with global scope for selector are ignored
eg. :global(.bold) { font-weight: bold; }
*/
test({
code: `
import s from './noUndefClass2.scss';
export default Foo = () => (
<div className={s.bold}>
</div>
);
`,
errors: [
'Class \'bold\' not found',
],
}),
/*
check less support
*/
test({
code: `
import s from './noUndefClass1.less';
export default Foo = () => (
<div className={s.bold}>
</div>
);
`,
errors: [
'Class \'bold\' not found',
],
}),
/*
using composes
*/
test({
code: `
import s from './composes1.scss';
export default Foo = () => (
<div className={s.bar}>
<div className={s.bazz}>
</div>
</div>
);
`,
errors: [
'Class \'bazz\' not found',
],
}),
/*
using @extend
*/
test({
code: `
import s from './extend1.scss';
export default Foo = () => (
<div className={s.bar}>
<div className={s.bazz}>
</div>
</div>
);
`,
errors: [
'Class \'bazz\' not found',
],
}),
/*
should show errors for file that does not exist
*/
test({
code: `
import s from './fileThatDoesNotExist.scss';
export default Foo = () => (
<div className={s.bar}>
<div className={s.baz}>
</div>
</div>
);
`,
errors: [
'Class \'bar\' not found',
'Class \'baz\' not found',
],
}),
],
});