-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc.js
111 lines (111 loc) · 2.79 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
111
module.exports = {
root: true,
env: {
browser: true,
commonjs: true,
es6: true
},
extends: ['@react-native-community', 'eslint:recommended', 'plugin:react/recommended'],
parser: 'babel-eslint',
parserOptions: {
ecmaFeatures: {
jsx: true,
modules: true,
experimentalObjectRestSpread: true
},
ecmaVersion: 2018,
sourceType: 'module'
},
plugins: ['react', 'react-native', 'prettier'],
rules: {
// general
// "indent": ["error", 2],
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single'],
semi: ['error', 'always'],
'comma-dangle': [
'error',
{
arrays: 'never',
objects: 'never',
imports: 'never',
exports: 'never',
functions: 'ignore'
}
],
'object-curly-spacing': ['error', 'always'],
'eol-last': ['error', 'always'],
'no-console': 'off',
'no-restricted-syntax': [
'error',
{
selector:
// eslint-disable-next-line quotes
"CallExpression[callee.object.name='console'][callee.property.name!=/^(warn|error|info|trace|disableYellowBox|tron)$/]",
message: 'Unexpected property on console object was called'
}
],
complexity: ['error', { max: 14 }],
eqeqeq: ['error', 'always'],
// react
'react/no-unescaped-entities': ['error', { forbid: ['>', '"', '}'] }],
'react/prop-types': [1, { ignore: ['action', 'dispatch', 'nav', 'navigation'] }],
'react/display-name': 2,
'react/jsx-boolean-value': 2,
'react/jsx-no-undef': 2,
'react/jsx-uses-react': 2,
'react/jsx-sort-props': [
2,
{
callbacksLast: true,
shorthandFirst: true,
ignoreCase: true,
noSortAlphabetically: true
}
],
'react/jsx-pascal-case': 2,
// react-native specific rules
'react-native/no-unused-styles': 2,
'react-native/no-inline-styles': 2
},
// Map from global var to bool specifying if it can be redefined
globals: {
__DEV__: true,
__dirname: false,
__fbBatchedBridgeConfig: false,
alert: false,
cancelAnimationFrame: false,
cancelIdleCallback: false,
clearImmediate: true,
clearInterval: false,
clearTimeout: false,
console: false,
document: false,
escape: false,
Event: false,
EventTarget: false,
exports: false,
fetch: false,
FormData: false,
global: false,
Map: true,
module: false,
navigator: false,
process: false,
Promise: true,
requestAnimationFrame: true,
requestIdleCallback: true,
require: false,
Set: true,
setImmediate: true,
setInterval: false,
setTimeout: false,
window: false,
XMLHttpRequest: false
},
settings: {
react: {
version: require('./package.json').dependencies.react
}
}
};