forked from OctoLinker/OctoLinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
37 lines (37 loc) · 952 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": "airbnb-base",
"plugins": ["mocha"],
"env": {
"browser": true,
"mocha": true
},
"rules": {
"func-names": 0,
"id-length": [1, {"exceptions": ["$"]}],
"new-cap": [2, {"capIsNewExceptions": ["Deferred"]}],
"max-len": 0,
"no-prototype-builtins": 0,
"import/extensions": 0,
"import/prefer-default-export": 0,
"no-underscore-dangle": 0,
"no-useless-escape": 0,
"class-methods-use-this": 0,
"no-param-reassign": 0,
"no-restricted-syntax": 0,
"consistent-return": 0,
"array-callback-return": 0,
"mocha/no-exclusive-tests": 2,
"mocha/no-skipped-tests": 2,
"mocha/no-pending-tests": 2,
"mocha/handle-done-callback": 2,
"mocha/no-global-tests": 2,
"mocha/no-return-and-callback": 2,
"mocha/no-sibling-hooks": 2,
"mocha/no-identical-title": 2,
"mocha/no-top-level-hooks": 2
},
"globals": {
"fixture": true,
"chrome": true,
}
}