forked from symbol/mobile-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
48 lines (48 loc) · 1.16 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"extends": [
"prettier",
"plugin:prettier/recommended"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"jest": true
},
"rules": {
"global-require": "off",
"import/no-unresolved": "off",
"react/state-in-constructor": "off",
"react/prefer-stateless-function": "off",
"react/jsx-curly-newline": "off",
"react/jsx-indent": "off",
"react/jsx-no-undef": "warn",
"react/jsx-indent-props": ["error", 4],
"react/jsx-closing-bracket-location": "off",
"react/no-did-mount-set-state": "off",
"react/require-default-props": "off",
"react/static-property-placement": "off",
"react/jsx-props-no-spreading": "off",
"react/jsx-filename-extension": [
"error",
{
"extensions": [".js", ".jsx"]
}
],
"indent": ["error", 4, { "SwitchCase": 1 }],
"react-native/no-unused-styles": 2,
"react-native/no-inline-styles": 2,
"object-shorthand": ["error", "consistent"],
"no-use-before-define": [
"error",
{
"functions": true,
"classes": true,
"variables": false
}
]
}
}