forked from rnmapbox/maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
110 lines (109 loc) · 2.7 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
module.exports = {
root: true,
parser: '@babel/eslint-parser',
plugins: ['react', 'react-native', 'fp', 'import'],
env: {
jest: true,
},
settings: {
react: {
version: require('./package.json').dependencies.react,
pragma: 'React',
},
'import/resolver': {
node: {
extensions: ['.js', '.jsx'],
},
},
'import/ignore': ['react-native'],
parserOptions: {
ecmaFeatures: {
jsx: true,
modules: true,
},
},
},
globals: {
fetch: true,
FormData: true,
requestAnimationFrame: true,
cancelAnimationFrame: true,
WebSocket: true,
__DEV__: true,
window: true,
document: true,
navigator: true,
XMLSerializer: true,
},
extends: [
'eslint:recommended',
'plugin:react/recommended',
'@react-native-community',
'prettier',
],
rules: {
'react/no-deprecated': 'warn',
'react/no-string-refs': 'warn',
'import/named': [2],
'import/no-named-default': [0],
'import/order': [
'error',
{
groups: ['builtin', 'external', 'parent', 'sibling', 'index'],
'newlines-between': 'always',
},
],
'import/exports-last': [0],
'import/no-useless-path-segments': [2],
camelcase: [0],
'no-console': [0],
'import/prefer-default-export': 'off',
'jsx-a11y/href-no-hash': 'off',
'react/prop-types': [0],
quotes: [2, 'single'],
'eol-last': [0],
'no-continue': [1],
'class-methods-use-this': [0],
'no-bitwise': [1],
'prefer-destructuring': [1],
'consistent-return': [0],
'no-warning-comments': [1],
'no-mixed-requires': [0],
'no-return-assign': 0,
'no-underscore-dangle': [0],
'no-await-in-loop': 0,
'no-restricted-syntax': 0,
'no-use-before-define': ['error', { functions: false }],
'no-unused-expressions': ['error', { allowTaggedTemplates: true }],
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
'fp/no-mutating-methods': 'warn',
'react-native/no-inline-styles': 0,
},
ignorePatterns: ['**/rnmapbox.web.symlink'],
overrides: [
{
// Match TypeScript Files
files: ['**/*.{ts,tsx}'],
parserOptions: {
project: [
'./tsconfig.json',
'./example/tsconfig.json',
'./plugin/src/__tests__/tsconfig.eslint.json',
],
},
plugins: ['@typescript-eslint'],
extends: [
'eslint:recommended',
'plugin:react/recommended',
'@react-native-community',
'plugin:@typescript-eslint/recommended',
'prettier',
],
rules: {
'no-shadow': 'off',
'import/named': 'off',
'react-native/no-inline-styles': 0,
},
},
],
};