mirror of https://github.com/status-im/web3.js.git
20 lines
391 B
Plaintext
20 lines
391 B
Plaintext
{
|
|
"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"
|
|
]
|
|
}
|