-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
66 lines (66 loc) · 1.95 KB
/
.eslintrc.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
module.exports = {
'globals': {
__PATH_PREFIX__: true,
},
'extends': `react-app`,
'no-restricted-imports': [
'error',
{
paths: [
{
name: 'react-icons-kit/entypo',
message: 'Please use react-icons-kit/entypo/your-icon instead.',
},
{
name: 'react-icons-kit/fa',
message: 'Please use react-icons-kit/fa/your-icon instead.',
},
{
name: 'react-icons-kit/feather',
message: 'Please use react-icons-kit/feather/your-icon instead.',
},
{
name: 'react-icons-kit/icomoon',
message: 'Please use react-icons-kit/icomoon/your-icon instead.',
},
{
name: 'react-icons-kit/iconic',
message: 'Please use react-icons-kit/iconic/your-icon instead.',
},
{
name: 'react-icons-kit/ikons',
message: 'Please use react-icons-kit/ikons/your-icon instead.',
},
{
name: 'react-icons-kit/ionicons',
message: 'Please use react-icons-kit/ionicons/your-icon instead.',
},
{
name: 'react-icons-kit/linea',
message: 'Please use react-icons-kit/linea/your-icon instead.',
},
{
name: 'react-icons-kit/md',
message: 'Please use react-icons-kit/md/your-icon instead.',
},
{
name: 'react-icons-kit/metrize',
message: 'Please use react-icons-kit/metrize/your-icon instead.',
},
{
name: 'react-icons-kit/noto_emoji_regular',
message:
'Please use react-icons-kit/noto_emoji_regular/your-icon instead.',
},
{
name: 'react-icons-kit/oct',
message: 'Please use react-icons-kit/oct/your-icon instead.',
},
{
name: 'react-icons-kit/typicons',
message: 'Please use react-icons-kit/typicons/your-icon instead.',
},
],
},
],
}