forked from eBay/ebayui-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
44 lines (44 loc) · 1.01 KB
/
.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
38
39
40
41
42
43
44
{
"globals": {
"Marko": "readonly"
},
"extends": ["ebay", "prettier"],
"env": {
"browser": true
},
"plugins": ["import", "mocha", "compat"],
"rules": {
"import/order": [
2,
{
"groups": [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index"
]
}
],
"mocha/no-exclusive-tests": 2,
"mocha/no-identical-title": 2,
"mocha/no-nested-tests": 2,
"mocha/no-sibling-hooks": 2,
"compat/compat": 2,
"no-multiple-empty-lines": 2
},
"overrides": [
{
"files": ["**/test/*", "**/test-utils/*"],
"rules": {
"compat/compat": 0
}
}
],
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"sourceType": "module"
}
}