forked from gigerbytes/MentorApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
35 lines (35 loc) · 791 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
31
32
33
34
35
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"jest/globals": true
},
"plugins": ["react", "import", "react-native", "jest", "detox"],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:react-native/all",
"plugin:jest/recommended"
],
"globals": {
"process": "readonly"
},
"rules": {
"no-console": 0,
"quotes": ["error", "single"],
"semi": ["error", "never"],
"react-native/sort-styles": 0,
"react-native/no-color-literals": 0,
"react-native/no-inline-styles": 0,
"react-native/split-platform-components": 0,
"react/display-name": 0
}
}