aboutsummaryrefslogtreecommitdiff
path: root/web/.eslintrc
blob: bacc506c09a769631c0eaa95255a91e0a1832414 (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
{
    "extends": "crockford",

    // Custom Globals
    "globals"       : {
        "Ext"       : false,
        "ol"        : false,
        "Traccar"   : false,
        "Strings"   : false,
        "Locale"    : false,
        "proj4"     : false
    },

    "rules": {
        "indent": ["error", 4, 
            {
                "SwitchCase":1
            }
        ],
        "dot-notation": 0,
        "comma-spacing": [2,
            {
                "after": true
            }
        ]
    }
}