You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
387 B
19 lines
387 B
{
|
|
"browserify": true,
|
|
"bitwise": true,
|
|
"camelcase": true,
|
|
"eqeqeq": true,
|
|
"freeze": true,
|
|
"funcscope": false,
|
|
"maxcomplexity": 4, /* our target is 3! */
|
|
"maxdepth": 3,
|
|
"maxerr": 50,
|
|
/*"maxlen": 80*/ /*this should be our goal*/
|
|
"maxparams": 3,
|
|
"nonew": true,
|
|
"unused": true,
|
|
"undef": true,
|
|
"predef": [
|
|
"console"
|
|
]
|
|
}
|
|
|