forked from kevinstumpf/react-native-signature-pad
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc
29 lines (29 loc) · 785 Bytes
/
.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
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"jest": true
},
"rules": {
"object-curly-newline": 0,
"object-curly-spacing": 0,
"max-len": 0,
"react/require-default-props": 0,
"react/prop-types": 0,
"react/jsx-tag-spacing": 0,
"comma-dangle": 0,
"no-use-before-define": 0,
"import/prefer-default-export": 0,
"prefer-promise-reject-errors": 0,
"no-trailing-spaces": [0],
"padded-blocks": [0],
"no-restricted-globals": [0],
"react/jsx-filename-extension": 0,
"jsx-a11y/media-has-caption": 0,
"jsx-a11y/anchor-is-valid": 0,
"react/no-did-update-set-state": 0,
"no-console": "off",
"react/destructuring-assignment": [1, "always", { "ignoreClassFields": true }]
}
}