-
Notifications
You must be signed in to change notification settings - Fork 34
/
.eslintrc.js
91 lines (91 loc) · 2.76 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
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
module.exports = {
root: true,
extends: '@react-native',
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'detox', 'simple-import-sort'],
overrides: [
{
files: [
'*.ts',
'*.tsx',
'*.e2e.js',
'**/*.spec.js',
'**/*.spec.jsx',
'**/tools.js',
],
rules: {
'react-native/no-unused-styles': 'error',
'@typescript-eslint/no-shadow': ['error'],
'react-hooks/exhaustive-deps': 'error',
'no-shadow': 'off',
'no-undef': 'off',
'simple-import-sort/imports': 'error',
'simple-import-sort/exports': 'error',
'@typescript-eslint/no-explicit-any': 'error',
'no-restricted-imports': [
'error',
{
patterns: [
{
group: ['..*', './../*'],
message: 'Please use absolute import with @ instead',
},
],
paths: [
{
name: 'i18n-js',
message: 'Please use custom wrapper from @translations/i18n',
},
{
name: 'react-native-config',
message: 'Please use custom wrapper from @constants/env',
},
{
name: '@constants/fonts',
message: 'Please use font util from @utils/styles',
},
{
name: 'dayjs',
message: 'Please use dayjs from @services/dayjs',
},
{
name: 'lottie-react-native',
message: 'Please use custom wrapper from @component/LottieView',
},
{
name: 'react-string-replace',
message: 'Please use replaceString from @translations/i18n',
},
{
name: 'react-native-safe-area-context',
importNames: ['useSafeAreaFrame', 'useSafeAreaInsets'],
message:
'Please use useSafeAreaFrame from @hooks/useSafeAreaFrame or useSafeAreaInsets from @hooks/useSafeAreaInsets',
},
{
name: 'react-native-share',
message: 'Please use custom wrapper from @services/share',
},
{
name: '@gorhom/bottom-sheet',
message:
'Please use custom wrapper from @component/BottomSheet',
},
],
},
],
'no-restricted-modules': [
'error',
{
patterns: ['src/assets/images/*', 'src/assets/lottie/*'],
},
],
},
env: {
'detox/detox': true,
jest: true,
'jest/globals': true,
},
},
],
};