summaryrefslogtreecommitdiff
path: root/.jshintrc
blob: 172f4917a7f7c35923f0f56957302865722a6882 (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
{
    // Enforcing options
    "eqeqeq": false,
    "forin": true,
    "indent": 4,
    "noarg": true,
    "undef": true,
    "trailing": true,
    "evil": true,
    "laxcomma": true,

    // Relaxing options
    "onevar": false,
    "asi": false,
    "eqnull": true,
    "expr": false,
    "loopfunc": true,
    "sub": true,
    "browser": true,
    "node": true,
    "globals": {
        "define": true
    }
}