Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.jshintrc - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 414fce68033f4777192d789e2d7dbc5e713d0f8a (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
{
    "esversion" : 6,

    // Show more errors
    "maxerr" : 1000,

    // Globals
    "jquery" : true,

    // Stricter checking
    "curly" : true,
    "immed" : true,
    "indent" : 4,
    "latedef" : true,
    "noarg" : true,
    "noempty" : true,
    "unused" : false,
    "trailing" : true,

    // Relaxing rules
    "sub" : false,
    "funcscope" : false,
    "laxbreak" : false
}