-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
69 lines (69 loc) · 1.88 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"env": {
"react-native/react-native": true,
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended",
"prettier",
"prettier/prettier"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react", "react-native"],
"rules": {
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "warn",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "off",
"react/jsx-filename-extension": ["off"],
"react/jsx-one-expression-per-line": 0,
"linebreak-style": ["off"],
"implicit-arrow-linebreak": 0,
"no-undef": ["error"],
"react/sort-comp": ["off"],
"react/prefer-stateless-function": ["off"],
"react/destructuring-assignment": 1,
"function-paren-newline": 0,
"semi": ["error", "never"],
"spaced-comment": 0,
"comma-dangle": ["error", "never"],
"react/prop-types": 0,
"no-extra-boolean-cast": 0,
"quote-props": 0,
"object-curly-spacing": ["error", "always"],
"camelcase": 0,
"no-nested-ternary": 0,
"react/jsx-wrap-multilines": 0,
"object-curly-newline": 0,
"operator-linebreak": 0,
"no-unused-expressions": 0,
"global-require": 0,
"max-len": 0,
"import/no-cycle": 0,
"no-underscore-dangle": 0,
"no-return-assign": 0,
"import/prefer-default-export": 0,
"jsx-quotes": ["error", "prefer-double"],
"no-console": "warn",
"arrow-parens": 0,
"eol-last": 0,
"react-native/no-unused-styles": 0,
"react-native/split-platform-components": 0,
"react-native/no-inline-styles": 0,
"react-native/no-color-literals": 0,
"react-native/no-raw-text": 0,
"consistent-return": 0
}
}