-
Notifications
You must be signed in to change notification settings - Fork 59
/
.eslintrc.json
53 lines (53 loc) · 1.34 KB
/
.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"plugins": [
"react",
"react-native",
"@typescript-eslint",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"ecmaFeatures": {
"tsx": true,
"modules": true
},
"sourceType": "module",
"useJSXTextNode": false
},
"env": {
"es6": true,
"jest": true,
"react-native/react-native": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:react/recommended",
"plugin:react-native/all",
"plugin:prettier/recommended"
],
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"react/jsx-filename-extension": "off",
"react-native/no-raw-text": "off",
"react/prop-types": "off",
"react/display-name": "off",
"react-native/no-inline-styles": "off",
"react-native/no-color-literals": "off",
"react-native/sort-styles": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/class-name-casing": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/explicit-function-return-type": "error",
"no-console": "error",
"no-debugger": "error",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/ban-ts-comment": "off"
}
}