-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy path.eslintrc
More file actions
33 lines (33 loc) · 733 Bytes
/
Copy path.eslintrc
File metadata and controls
33 lines (33 loc) · 733 Bytes
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
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:prettier/recommended",
"plugin:jsx-a11y/recommended",
"standard"
],
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react", "prettier", "jsx-a11y"],
"rules": {
"react/no-unknown-property": ["error", { "ignore": ["css"] }],
"react/prop-types": "off",
"space-before-function-paren": "off",
"prettier/prettier": 2
},
"globals": {
"describe": "writable",
"it": "writable",
"test": "writable",
"expect": "writable",
"beforeEach": "writable",
"cy": "writable"
}
}