-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
38 lines (38 loc) · 992 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
38
{
"env": {
"browser": true,
"es2021": true,
"react-native/react-native": true
},
"extends": [
"plugin:react/recommended",
"google"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react",
"react-native",
"@typescript-eslint"
],
"rules": {
"react-native/no-unused-styles": 1,
"react-native/split-platform-components": 1,
"react-native/no-inline-styles": 0,
"react-native/no-color-literals": 0,
"react-native/no-raw-text": 1,
"react-native/no-single-element-style-arrays": 1,
"require-jsdoc" : 0,
"object-curly-spacing": 0,
"no-tabs": 0,
"quotes": "off",
"@typescript-eslint/quotes": ["error", "double"],
"space-before-function-paren": 0
}
}