forked from nuxeo/nuxeo-web-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
44 lines (44 loc) · 930 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
38
39
40
41
42
43
44
{
'extends': 'airbnb-base',
'root': true,
'rules': {
'class-methods-use-this': 0,
'comma-dangle': ["error", "always-multiline"],
'consistent-return': 0,
'func-names': 0,
'max-len': [2, 120, 2, {
'ignoreUrls': true,
'ignoreComments': false
}],
'new-cap': [2, {
'capIsNewExceptions': [
'Given',
'When',
'Then',
'After',
'Before',
]
}],
'no-unused-expressions': 0,
'no-param-reassign': 0,
'no-plusplus': 0,
'no-else-return': 0,
'no-return-assign': 0,
'no-throw-literal': 0,
'no-underscore-dangle': 0,
'prefer-destructuring': 0,
'radix': 0
},
'globals': {
'addedComments': true,
'driver': true,
'fixtures': true,
'liveCollections': true,
'liveDocuments': true,
'runningWorkflows': true,
'users': true,
'groups': true,
'browser': true,
'$': true,
}
}