-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.js
38 lines (38 loc) · 918 Bytes
/
.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
module.exports = {
root: true,
extends: ['@react-native-community', 'plugin:import/recommended'],
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
'simple-import-sort',
'unused-imports',
'prettier',
],
overrides: [
{
files: ['*.ts', '*.tsx'],
rules: {
'@typescript-eslint/no-shadow': 'off',
'no-shadow': 'off',
'no-undef': 'off',
'jsx-quotes': ['error', 'prefer-single'],
'react-native/no-inline-styles': 'off',
'react-hooks/exhaustive-deps': 'off',
'import/named': 'off',
'import/no-unresolved': 'off',
'import/namespace': 'off',
'comma-dangle': 'off',
},
},
],
rules: {
'simple-import-sort/imports': 'error',
'simple-import-sort/exports': 'error',
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
},
};