forked from rnmapbox/maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
89 lines (89 loc) · 2.13 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
module.exports = {
root: true,
parser: 'babel-eslint',
plugins: ['react', 'react-native', 'prettier', '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',
'prettier',
'@react-native-community',
],
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': [2],
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}],
'prettier/prettier': [
'error',
{
singleQuote: true,
trailingComma: 'all',
bracketSpacing: false,
},
],
'fp/no-mutating-methods': 'warn',
},
};