forked from XDATA-Year-3/EntityAlignLarge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
41 lines (41 loc) · 1.04 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
{
"extends": "semistandard",
"Xrules": {
// "indent": [2, 4, {"SwitchCase": 1}],
"space-before-function-paren": [2, {"anonymous": "always", "named": "never"}],
"one-var": 0,
"no-throw-literal": 0,
"backbone/collection-model": 2,
"backbone/model-defaults": 0,
"backbone/no-model-attributes": 2,
"backbone/no-view-onoff-binding": 0,
"backbone/no-view-collection-models": 2,
"backbone/event-scope": 0,
"backbone/no-native-jquery": 0,
"backbone/no-constructor": 2,
"backbone/initialize-on-top": 2,
"backbone/events-on-top": 2,
},
"rules": {
"spaced-comment": 0 //DWM::
},
"env": {
// "jquery": true,
"browser": true
},
"plugins": [
// "eslint",
"backbone",
// "underscore"
],
"globals": {
/*
"_": true,
"girder": true,
"Backbone": true,
"marked": true,
"JSONEditor": true,
"sprintf": true
*/
}
}