forked from pritishvaidya/react-native-flip-countdown-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
28 lines (28 loc) · 809 Bytes
/
.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
{
"extends": "airbnb",
"parser": "babel-eslint",
"plugins": [
"react-native",
"jest"
],
"env": {
"jest": true
},
"rules": {
"react/jsx-no-bind": "off",
"react/no-string-refs": "off",
"no-underscore-dangle": "off",
"no-unused-vars": ["error", { "argsIgnorePattern": "(state|dispatch)" }],
"new-cap": ["error", {"capIsNewExceptions": ["Immutable"]}],
"import/no-extraneous-dependencies": "off",
"no-console": "off",
"react/jsx-filename-extension": "off",
"global-require": "off",
"no-alert": "off",
"react/forbid-prop-types": "off",
"class-methods-use-this": "off",
"react/no-unused-prop-types": "warn",
"react/prefer-stateless-function": ["error", {"ignorePureComponents": true}],
"react/require-default-props": "off"
}
}