aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/.jshintrc
blob: 8237e0d2b6430de7834f13db03a1fe2a01c76fa7 (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
{
  "bitwise": true,
  "curly": true,
  "eqeqeq": true,
  "esnext": true,
  "freeze": true,
  "immed": true,
  "indent": 2,
  "latedef": "nofunc",
  "maxlen": 80,
  "newcap": true,
  "node": true,
  "noarg": true,
  "quotmark": "single",
  "strict": true,
  "trailing": true,
  "undef": true,
  "unused": "vars",
  "globals": {
    /* Mocha-provided globals */
    "describe": false,
    "it": false,
    "before": false,
    "beforeEach": false,
    "after": false,
    "afterEach": false
  }
}