-
Notifications
You must be signed in to change notification settings - Fork 9
/
.eslintrc
48 lines (48 loc) · 1009 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"parser": "babel-eslint",
"extends": [
"airbnb",
"prettier",
"prettier/react",
"plugin:jsx-a11y/recommended"
],
"plugins": ["react", "react-native", "prettier", "jsx-a11y"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"rules": {
"prefer-destructuring": "off",
"react/jsx-filename-extension": "off",
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true,
"optionalDependencies": false,
"peerDependencies": false
}
],
"prettier/prettier": [
"error",
{
"trailingComma": "all",
"singleQuote": true,
"printWidth": 100
}
],
"quotes": ["error", "backtick"],
"react-native/no-unused-styles": 2,
"react-native/no-color-literals": 2
},
"env": {
"jest": true
},
"globals": {
"fetch": false,
"navigator": false,
"__DEV__": false
}
}