forked from evva-sfw/abrevva-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
37 lines (37 loc) · 914 Bytes
/
.eslintrc.json
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
{
"root": true,
"extends": [
"@react-native",
"prettier"
],
"plugins": [
"unused-imports",
"simple-import-sort",
"jest"
],
"rules": {
"no-void": "off",
"max-len": "off",
"no-console": "off",
"no-bitwise": "off",
"no-underscore-dangle": "off",
"id-blacklist": "off",
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn"
],
"react/react-in-jsx-scope": "off",
"prettier/prettier": [
"error",
{
"printWidth": 100,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}
]
}
}