forked from alexgarces/react-typeform-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
38 lines (38 loc) · 890 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
29
30
31
32
33
34
35
36
37
38
{
"extends": ["airbnb", "prettier"],
"parser": "babel-eslint",
"plugins": ["prettier", "jest"],
"globals": {
"window": true,
"document": true
},
"env": {
"jest/globals": true
},
"rules": {
"no-multi-assign": 0,
"prettier/prettier": ["error"],
"react/jsx-filename-extension": [
1,
{
"extensions": [".js", ".jsx"]
}
],
"react/forbid-prop-types": false,
"import/prefer-default-export": false,
"jsx-a11y/label-has-for": false,
"react/prop-types": false,
"react/jsx-one-expression-per-line": false,
"arrow-body-style": 0,
"react/button-has-type": false,
"react/destructuring-assignment": false,
"consistent-return": 1,
"jsx-a11y/label-has-associated-control": false,
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
]
}
}