-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
63 lines (63 loc) · 1.56 KB
/
.eslintrc.json
File metadata and controls
63 lines (63 loc) · 1.56 KB
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
{
"env": {
"browser": true,
"es2020": true
},
"extends": ["@react-native-community", "airbnb", "prettier"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint", "prettier"],
"rules": {
"prettier/prettier": ["warn"],
"one-var": "off",
"no-multi-assign": "error",
"no-nested-ternary": "off",
"global-require": "off",
"import/no-extraneous-dependencies": "off",
// "import/no-extraneous-dependencies": [
// "error",
// {
// "devDependencies": true,
// "optionalDependencies": true,
// "peerDependencies": true
// }
// ],
"import/first": "off",
"react-native/no-unused-styles": "warn",
"react-native/split-platform-components": "off",
"react-native/no-raw-text": "off",
"react/require-default-props": "off",
"no-use-before-define": "off",
"react/jsx-filename-extension": [
1,
{ "extensions": [".js", ".jsx", ".ts", ".tsx"] }
],
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
// FIXME: change this to error later in version 1.0.0
"react/no-unused-prop-types": "off",
"import/prefer-default-export": "warn"
},
"settings": {
"import/resolver": {
"node": {
"paths": ["src"],
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
}
}