-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
30 lines (30 loc) · 877 Bytes
/
.eslintrc
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
{
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"no-underscore-dangle": ["error", { "allowAfterThis": true }],
"no-use-before-define": 0,
"react/prop-types": 0,
"react/require-default-props": 0,
"import/prefer-default-export": 0,
"arrow-body-style": 0,
"react/prefer-stateless-function": 0,
"class-methods-use-this": 0,
"global-require": 0,
"no-bitwise": 0,
"guard-for-in": 0,
"no-param-reassign": 0,
"no-restricted-syntax": 0,
"react/jsx-boolean-value": 0,
"no-undef": 0,
"no-console": 0,
"react/sort-comp": [1, {order: [
'type-annotations',
'static-methods',
'lifecycle',
'everything-else',
'render',
],
}],
}
}