aboutsummaryrefslogtreecommitdiffstats
path: root/src/.jshintrc
blob: 8a47fc233b9011388b955c15611bb0b0d182330e (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
{
  "options": {
    "browser": true,
    "curly": true,
    "eqnull": true,
    "evil": true,
    "expr": true,
    "maxerr": 100,
    "newcap": false,
    "quotmark": "double",
    "strict": true,
    "sub": true,
    "trailing": true,
    "undef": true,
    "unused": true,
    "wsh": true
  },
  "globals": {
    "define": true,
    "DOMParser": true,
    "__dirname": true,
    "jQuery": true,
    "global": true,
    "module": true,
    "exports": true,
    "require": true,
    "file": true,
    "log": true,
    "console": true
  }
}