forked from apostrophecms-legacy/apostrophe-personas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
44 lines (44 loc) · 923 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": "punkave",
"rules": {
"space-before-function-paren": 0,
"padded-blocks": 0,
"quotes": 0,
"standard/no-callback-literal": 0,
"no-path-concat": 0,
"no-throw-literal": 0
},
"overrides": [
{
"files": [ "**/public/**/*.js" ],
"excludedFiles": [ "**/public/vendor/**/*.js" ],
"globals": {
"window": true,
"document": true,
"location": true,
"apos": true,
"_": true,
"async": true,
"confirm": true,
"$": true,
"CKEDITOR_BASEPATH": true,
"CKEDITOR": true,
"alert": true,
"jQuery": true,
"sluggo": true,
"moog": true,
"Pikaday": true,
"moment": true
}
},
{
"files": [ "test/**/*.js" ],
"globals": {
"describe": true,
"it": true,
"after": true,
"before": true
}
}
]
}