-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
145 lines (145 loc) · 3.45 KB
/
.eslintrc.js
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// 1/6/2021: Rules pulled from here: https://fengqijun.me/configure-typescript-eslint-prettier-on-vscode-to-develop-react-native/
module.exports = {
env: {
es6: true,
node: true,
jest: true,
"react-native/react-native": true
},
extends: [
"airbnb",
"plugin:react-native/all",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:prettier/recommended",
"prettier/react",
"prettier/@typescript-eslint"
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaFeatures: {
jsx: true,
impliedStrict: true
},
ecmaVersion: 2018,
sourceType: "module"
},
plugins: [
"react",
"react-native"
],
settings: {
"import/resolver": {
typescript: {},
"babel-plugin-root-import": {
rootPathSuffix: "app",
rootPathPrefix: "~"
},
node: {
extensions: [".js", ".jsx", "ts", ".tsx"]
}
}
},
globals: {
ios: false,
android: false,
windowHeight: false,
windowWidth: false,
hairlineWidth: false,
DeviceInfo: false,
isIphoneX: false,
StatusBarHeight: false,
HeaderHeight: false
},
rules: {
"global-require": 0,
"linebreak-style": [2, "unix"],
"prefer-const": 0,
"no-console": [
"warn",
{
allow: ["warn", "error", "log", "info", "disableYellowBox"]
}
],
"no-param-reassign": ["error", { props: false }],
"no-restricted-globals": 0,
"no-unused-vars": 0,
"no-use-before-define": 0,
"no-underscore-dangle": 0,
"no-useless-constructor": 0,
"no-unused-expressions": 0,
"no-plusplus": 0,
"no-nested-ternary": 0,
"lines-between-class-members": [
1,
"always",
{
exceptAfterSingleLine: true
}
],
"prefer-destructuring": [
2,
{
array: false,
object: true
}
],
"max-classes-per-file": 0,
"import/prefer-default-export": 0,
"react/prefer-stateless-function": 0,
"react/destructuring-assignment": 0,
"react/prop-types": 0,
"react/react-in-jsx-scope": 0,
"react/jsx-props-no-spreading": 0,
"react/jsx-filename-extension": [
2,
{
extensions: [".jsx", ".tsx"]
}
],
"jsx-a11y/accessible-emoji": 0,
"react/static-property-placement": 0,
"react-native/no-color-literals": 0,
"react-native/no-raw-text": 0,
"react-native/no-inline-styles": 0,
"react-native/split-platform-components": 0,
"@typescript-eslint/explicit-member-accessibility": [
2,
{ accessibility: "no-public" }
],
"@typescript-eslint/no-empty-interface": 1,
"@typescript-eslint/explicit-function-return-type": [
0,
{
allowExpressions: true,
allowTypedFunctionExpressions: true
}
],
"@typescript-eslint/no-explicit-any": 0,
'@typescript-eslint/no-var-requires': 0,
"@typescript-eslint/no-use-before-define": [
2,
{
functions: true,
classes: true,
variables: false
}
],
"no-shadow": "off",
"@typescript-eslint/no-shadow": ["error"],
"@typescript-eslint/no-unused-vars": [1, { args: "none" }],
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/ban-ts-ignore": 0,
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
]
}
};