-
Notifications
You must be signed in to change notification settings - Fork 11
/
.eslintrc
33 lines (33 loc) · 922 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
{
"extends": ["airbnb", "prettier"],
"plugins": ["prettier", "react", "eslint-plugin-import-helpers"],
"parserOptions": {
"ecmaVersion": 2020
},
"ignorePatterns": ["src/data/*.js"],
"rules": {
"global-require": 0,
"prettier/prettier": ["error"],
"no-case-declarations": 0,
"no-param-reassign": 0,
"no-promise-executor-return": 0,
"no-restricted-globals": 0,
"react/forbid-prop-types": 0,
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/jsx-fragments": 0,
"react/jsx-no-constructed-context-values": 0,
"react/jsx-props-no-spreading": 0,
"react/no-danger": 0,
"react/require-default-props": 0
},
"globals": {
"__html__": "readonly",
"document": "readonly",
"fetch": "readonly",
"figma": "readonly",
"parent": "writable",
"window": "readonly",
"Blob": "readonly",
"Image": "readonly"
}
}