forked from byteburgers/react-native-autocomplete-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
54 lines (45 loc) · 1.16 KB
/
.eslintrc
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
{
"extends": ["airbnb", "plugin:prettier/recommended"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"globals": {
"fetch": false
},
"env": {
"es6": true,
"jest/globals": true
},
"plugins": ["jest", "react", "prettier"],
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".ios.js", ".android.js"]
}
}
},
"rules": {
"prettier/prettier": "error",
"camelcase": "off",
"no-underscore-dangle": "off",
"no-unused-expressions": "off",
"no-use-before-define": "off",
"object-curly-newline": "off",
// Import
"import/extensions": ["off", "never"],
"import/no-extraneous-dependencies": "off",
// React
"react/destructuring-assignment": "off",
"react/forbid-prop-types": "off",
"react/jsx-boolean-value": ["error", "always"],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"react/require-default-props": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-props-no-spreading": "off"
}
}