Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.jshintrc - github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3fa708ca571575c96445d43c5050e9b65a16566b (plain)
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
45
46
{
    "curly": true,
    "eqeqeq": true,
    "immed": true,
    "indent": 4,
    "latedef": true,
    "noarg": true,
    "noempty": true,
    "nonew": true,
    "plusplus": false,
    "node": true,
    "undef": true,
    "unused": false,
    "strict": false,
    "maxparams": false,
    "maxdepth": 4,
    "esversion": 6,
    "browser": true,
    "devel": true,
    "jquery": true,
    "jasmine": true,
	"laxbreak": true,
    "globals": {
          "jQuery": true,
          "ICAL": true,
          "jstz": true,
          "moment": true,
          "angular": true,
          "app": true,
          "OC": true,
          "oc_current_user":true,
          "oc_requesttoken": true,
          "requestToken": true,
          "inject": true,
          "module": true,
          "t": true,
          "it": true,
          "exports": true,
          "escapeHTML": true,
          "possible": true,
          "dav": true,
          "hslToRgb": true,
          "autosize": true,
          "_": true
    }
}