forked from oblador/react-native-animatable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
24 lines (24 loc) · 669 Bytes
/
.eslintrc
File metadata and controls
24 lines (24 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": [
"airbnb",
"prettier",
"prettier/flowtype",
"prettier/react"
],
"plugins": [
"prettier"
],
"parser": "babel-eslint",
"rules": {
"react/sort-comp": [0],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/static-property-placement": [0],
"react/destructuring-assignment": [0],
"react/jsx-props-no-spreading": [0],
"import/no-extraneous-dependencies": [0],
"import/no-unresolved": [2, { ignore: ['^react(-native)?$'] }],
"import/extensions": [2, { "js": "never", "json": "always" }],
"arrow-parens": ["error", "as-needed"],
"prefer-object-spread": [0]
}
}