aboutsummaryrefslogtreecommitdiffstats
path: root/.jshintrc
blob: 5392959485952f711b9db08b40ac7dafe9c7487c (plain) (blame)
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
{
  "bitwise": false,
  "curly": true,
  "eqeqeq": true,
  "esversion": 6,
  "forin": true,
  "immed": true,
  "indent": 2,
  "latedef": true,
  "newcap": true,
  "noarg": true,
  "noempty": true,
  "nonew": true,
  "plusplus": true,
  "quotmark": "single",
  "undef": true,
  "unused": true,
  "trailing": true,
  "maxparams": 5,
  "maxdepth": 5,
  "maxstatements": 20,
  "maxcomplexity": 20,
  "maxlen": 120,
  "browser": true,
  "globals": {
    "d3": true,
    "m": true,
    "jrvs": true,
    "EventSource": true,
    "moment": true
  }
}