-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.js
81 lines (80 loc) · 1.89 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
const alias = require('./alias.config')
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
},
extends: [
'airbnb',
'airbnb/hooks',
'plugin:@typescript-eslint/recommended',
'@react-native-community',
'plugin:prettier/recommended',
],
plugins: ['@typescript-eslint', 'jest'],
env: {
'jest/globals': true,
},
rules: {
semi: ['error', 'never'],
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
'import/prefer-default-export': 'off',
'jest/expect-expect': 'off',
'no-console': ['error'],
'no-restricted-syntax': 'off',
'object-curly-spacing': ['error', 'always'],
'react/function-component-definition': [
'error',
{
namedComponents: 'arrow-function',
unnamedComponents: 'arrow-function',
},
],
'react/jsx-filename-extension': ['error', { extensions: ['.jsx', '.tsx'] }],
'react/jsx-no-literals': ['error', { noStrings: false, ignoreProps: true }],
'react/jsx-props-no-spreading': 'off',
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
},
settings: {
'import/resolver': {
'eslint-import-resolver-custom-alias': {
alias,
extensions: [
'.js',
'.jsx',
'.ts',
'.tsx',
'.d.ts',
'.android.js',
'.android.jsx',
'.android.ts',
'.android.tsx',
'.ios.js',
'.ios.jsx',
'.ios.ts',
'.ios.tsx',
],
},
},
},
overrides: [
{
files: ['**/__tests__/**/*.{js,jsx,ts,tsx}'],
rules: {
'react/jsx-no-literals': 'off',
},
},
],
}