-
Notifications
You must be signed in to change notification settings - Fork 364
/
.eslintrc
37 lines (37 loc) · 899 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
30
31
32
33
34
35
36
37
{
"extends": [
"prettier",
"prettier/react",
"airbnb",
"plugin:jest/recommended"
],
"plugins": [
"prettier",
"jest"
],
"env": {
"jest": true,
"browser": true
},
"rules": {
"prettier/prettier": "error",
"react/jsx-filename-extension": "off",
"react/no-array-index-key": "off",
"function-paren-newline": "off",
"comma-dangle": "off",
"arrow-parens": "off",
"object-shorthand": "off",
"no-plusplus": "off",
"no-buffer-constructor": "off",
"no-restricted-properties": "off",
"no-param-reassign": "off",
"no-await-in-loop": "off",
"space-before-function-paren": "off",
"no-console": "off",
"func-names": "off",
"object-curly-newline": "off",
"jsx-a11y/anchor-is-valid": "off",
"arrow-body-style": "off",
"import/no-extraneous-dependencies": ["error", {"ignore": ["aws-sdk"]}]
}
}